* Remove the mypy version constraint and set strict_optional to False. * Add type annotations for `ISA` variables. mypy 0.600 seems to require explicit annotations here. * Annotate the ISA variables in the defs.py files too.
6 lines
110 B
INI
6 lines
110 B
INI
[mypy]
|
|
disallow_untyped_defs = True
|
|
warn_unused_ignores = True
|
|
warn_return_any = True
|
|
strict_optional = False
|