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
Describe the bug mypy reports following error when import gspread v6.0.0.
Skipping analyzing "gspread": module is installed, but missing library stubs or py.typed markerMypy import-untyped
The cause of this seems to be py.typed marker is not included.
PEP561 says that
Package maintainers who wish to support type checking of their code MUST add a marker file named py.typed to their package supporting typing.
The text was updated successfully, but these errors were encountered:
Hi thank you for this issue.
Well take a look at the specs.
This fix might not be included in the next patch release but the one after that, so 6.0.2
Sorry, something went wrong.
Add py.typed marker
15d4423
Adding the marker file `py.typed` allows users to type their project and read the typing from gspread closes #1401
lavigne958
Successfully merging a pull request may close this issue.
Describe the bug
mypy reports following error when import gspread v6.0.0.
The cause of this seems to be py.typed marker is not included.
PEP561 says that
The text was updated successfully, but these errors were encountered: