swh:1:snp:00bd25be6ef59fb8210ef6a4c842086902e04451
Raw File
Tip revision: e19233f1c6b0a9fc02a432ba02750041cc2c1fb3 authored by sc336 on 15 March 2023, 10:08:32 UTC
Release 2.7.1 preparation (#2048)
Tip revision: e19233f
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