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
We should start running mypy in CI (probably in tox "lint" environment). This would enforce type annotation use and would check types at compile time.
Possibly we only want to do this to "new code" like api/ but it might be worth it to add annotations to everything (I'm not sure how much work this is).
Current behavior:
type annotation use is not enforced
types are not checked at compile time
Expected behavior:
new code without type annotations fails CI
types are statically checked: type check failure leads to CI failure
The text was updated successfully, but these errors were encountered:
We should start running mypy in CI (probably in tox "lint" environment). This would enforce type annotation use and would check types at compile time.
Possibly we only want to do this to "new code" like
api/
but it might be worth it to add annotations to everything (I'm not sure how much work this is).Current behavior:
Expected behavior:
The text was updated successfully, but these errors were encountered: