You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@KingDarBoja When you set disallow_untyped_defs = True, mypy will list all the missing definitions, like missing return type of a __str__ method, and missing type annotations for internal functions.
We should add type annotations for all definitions except those in tests, and enforce this with a
mypy.ini
configuration like this:The text was updated successfully, but these errors were encountered: