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
When we do a merge, we run pyright using the strict option. Current statistics on the types of errors found:
strict
reportUnknownMemberType 2387 reportUnknownParameterType 2112 reportMissingTypeArgument 1560 reportMissingParameterType 1247 reportUnknownArgumentType 613 reportUnknownVariableType 428 reportUnusedVariable 88 reportUnknownLambdaType 58 reportUnusedExpression 41 reportPrivateUsage 15 reportMissingTypeStubs 7
Can be output by running poe test pyright_strict
poe test pyright_strict
There are 8556 errors, and 3541 of them are in the stubs themselves. Rest are reported from the tests (but may be due to the stubs).
FYI for @MarcoGorelli
Some simple things that would help:
npt.NDArray
npt.NDArray[Any, Any]
args
kwargs
Series
UnknownSeries
Index
UnknownIndex
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When we do a merge, we run pyright using the
strict
option. Current statistics on the types of errors found:Can be output by running
poe test pyright_strict
There are 8556 errors, and 3541 of them are in the stubs themselves. Rest are reported from the tests (but may be due to the stubs).
FYI for @MarcoGorelli
Some simple things that would help:
npt.NDArray
to benpt.NDArray[Any, Any]
args
andkwargs
(see question: how to type compatibility-onlyargs
/kwargs
? #1168) in all stubs fileSeries
toUnknownSeries
and change from plainIndex
toUnknownIndex
in all stubs fileThe text was updated successfully, but these errors were encountered: