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
{{ message }}
This repository was archived by the owner on Aug 25, 2024. It is now read-only.
The next issue that makes sense to do after this issue is #189
We need to be sure that static type checkers support this functionality. The TypeScript based one from Microsoft does not. Next type checkers we need to test are Google's one and mypy.
We want to make
Definitioninto a wrapper around https://docs.python.org/3/library/typing.html#newtypeMaking sure it still supports the
lockandspeckeyword arguments.dffml/feature/git/dffml_feature_git/feature/definitions.py
Lines 24 to 29 in a09d12b
Then we need to go through all the operations and correct the types of their inputs:
dffml/feature/git/dffml_feature_git/feature/operations.py
Lines 105 to 108 in a09d12b
would become:
The next issue that makes sense to do after this issue is #189
We need to be sure that static type checkers support this functionality. The TypeScript based one from Microsoft does not. Next type checkers we need to test are Google's one and
mypy.