typeannotations
typeannotations copied to clipboard
A library with a set of tools for annotating types in Python code.
Results
3
typeannotations issues
Sort by
recently updated
recently updated
newest added
This is really a question, not an issue: is there a way to implement a type-annotated function that takes arguments of different but compatible types, such as "int" and "float"?...
You should allow to write something like that to indicate there is no return (=void) ``` @typechecked def rettest(self) -> None: print("Hello World") ``` But Actually ``` Hello World Traceback...