swh:1:snp:1cdda5e53711f98e04a62485ebb818a07588deba
Raw File
Tip revision: db2b42eb195f2bd1fd2830fcaf9314a3f343d132 authored by sc336 on 27 January 2023, 07:58:54 UTC
Sc336/2.7.0 develop merge (#2042)
Tip revision: db2b42e
mypy.ini
[mypy]
show_error_codes = True
; First we turn on *all the checks*, and then we turn off those that are too annoying.
strict = True
ignore_missing_imports = True
disallow_subclassing_any = False
disallow_untyped_calls = False
disallow_untyped_decorators = False
; This is needed because version 1.20.0 of NumPy introduces typing, so some ignores are necessary /
; unnecessary depending on the version of numpy:
warn_unused_ignores = False
back to top