Closed
Description
Enhancement Request
Your issue may already be reported!
Please check out our active issues before creating one.
Is Your Enhancement Request Related to an Issue?
At present, decorated functions do not have type hints
Say for this code for example
import thread
@thread.threaded
def myFunc(x: str) -> int: ...
myFunc(4) # This is not properly type hinted as "x: str", but "..."
Describe the Solution You'd Like
Decorated functions to be type hinted