swh:1:snp:214b78df8feeaa651193130b8c4fcf3754bdbdfe
Raw File
Tip revision: cce56f83db35c7f3e9c50cd00006d82a5c69a5db authored by sc336 on 02 December 2022, 15:19:29 UTC
Sc336/fix conflicts (#2024)
Tip revision: cce56f8
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