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
Python has supported typehints since version 3.5 (see here https://docs.python.org/3/library/typing.html).
Might be good to investigate if adding typehints would make the codebase a bit easier to maintain in the future?
The text was updated successfully, but these errors were encountered:
@sethmlarson Since, we are incrementally doing this.
Are type hints required for tests?
Test methods would usually have return type None and pytest parameterized arguments are mostly List[int] or List[str] or List[bool]
Python has supported typehints since version 3.5 (see here https://docs.python.org/3/library/typing.html).
Might be good to investigate if adding typehints would make the codebase a bit easier to maintain in the future?
The text was updated successfully, but these errors were encountered: