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
Cozy has its own hacky runtime typechecking code. The type annotations it accepts are nonstandard. We should replace uses of it with the standard type annotations from typing so that we can use 3rd-party typecheckers like mypy.
The text was updated successfully, but these errors were encountered:
As far as I know, MyPy is a static type-checking tool, we need to invoke it explicitly in our build. Enforce is a good runtime type-checking library of which the usage is same to our @typechecked decorator.
Cozy has its own hacky runtime typechecking code. The type annotations it accepts are nonstandard. We should replace uses of it with the standard type annotations from
typing
so that we can use 3rd-party typecheckers like mypy.The text was updated successfully, but these errors were encountered: