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
Type aliases are currently missing in places, leading to crazy return signatures such as:
Union[ Callable[ [Callable[Concatenate[Dict[str, Any], _P], Dict[str, Any]]], AwsEventRawCallable, ], Callable[ [Callable[Concatenate[AwsEventType, _P], LambdaResponse]], AwsEventRawCallable, ], ]
The text was updated successfully, but these errors were encountered:
This is caused by python/mypy#11855, in particular neither Concatenate nor ParamSpec are supported by TypeAlias in mypy.
Concatenate
ParamSpec
Sorry, something went wrong.
Update mypy, fix issue branchenergy#4
452f09a
Fixed in 2.0.0
8075c18
No branches or pull requests
Type aliases are currently missing in places, leading to crazy return signatures such as:
The text was updated successfully, but these errors were encountered: