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
First of all, thank you for adding type information to gspread.
gspread
The package is missing py.typed marker. Because of this, mypy skips type checking for the library (https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-library-stubs-or-py-typed-marker). I verified manually that adding py.typed file to the package does fix the issue.
py.typed
This will not show up during type checking of the repo itself (i.e., tox -e lint), but only when a downstream user uses the library.
tox -e lint
The text was updated successfully, but these errors were encountered:
Hi thank you for this, I will work on this and add the missing marker file.
Duplicates #1401 closing issue
Sorry, something went wrong.
No branches or pull requests
First of all, thank you for adding type information to
gspread
.The package is missing
py.typed
marker. Because of this, mypy skips type checking for the library (https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-library-stubs-or-py-typed-marker). I verified manually that addingpy.typed
file to the package does fix the issue.This will not show up during type checking of the repo itself (i.e.,
tox -e lint
), but only when a downstream user uses the library.The text was updated successfully, but these errors were encountered: