https://github.com/GPflow/GPflow
Revision 984185ad8dd7698c03d10397c71447539dc62a5e authored by st-- on 24 March 2022, 10:18:08 UTC, committed by GitHub on 24 March 2022, 10:18:08 UTC
1 parent cc7ed07
Raw File
Tip revision: 984185ad8dd7698c03d10397c71447539dc62a5e authored by st-- on 24 March 2022, 10:18:08 UTC
fix typo (#1824)
Tip revision: 984185a
mypy.ini
[mypy]
; 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