Skip to content
New issue

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

docs: Add API reference docs #71

Merged
merged 12 commits into from
Apr 30, 2024
Prev Previous commit
test
  • Loading branch information
duwenxin99 committed Apr 30, 2024
commit 0493df5996fb083314af7e6d5447cf086fe371a6
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -57,11 +57,13 @@ profile = "black"
python_version = "3.8"
warn_unused_configs = true

[[tool.mypy.overrides]]
module="google.auth.*"
ignore_missing_imports = true

exclude = [
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Move under mypy overrides

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My comment was incorrect. This should stay under tool.mypy

'docs/*',
'noxfile.py'
]

[[tool.mypy.overrides]]
module="google.auth.*"
ignore_missing_imports = true


Loading