We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have I misunderstood PEP-484? It seems to imply that the correct syntax for type checking should be:
@typed(scope=Any, *args=Any, **kwargs=Any) def method(scope, *args, **kwargs): pass
However this doesn't seem to work and I have to use
@typed(scope=Any, args=Any, kwargs=Any) ...
The text was updated successfully, but these errors were encountered:
Umm, I did wonder whether it should actually be this
@typed(scope=Any, args=*Any, kwargs=**Any)
but that doesn't seem to work either.
Sorry, something went wrong.
No branches or pull requests
Have I misunderstood PEP-484? It seems to imply that the correct syntax for type checking should be:
However this doesn't seem to work and I have to use
The text was updated successfully, but these errors were encountered: