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

Enable static type checking with pytype #298

Merged
merged 11 commits into from
Oct 5, 2018
Prev Previous commit
Next Next commit
Add pytype disable comments for scripts/
oauth2client isn't listed as a requirement, so users may not have it
installed.
  • Loading branch information
Solumin committed Sep 14, 2018
commit bbd81c1457df44f2d8d4e144eb1e843f59a67c39
2 changes: 2 additions & 0 deletions scripts/obtain_user_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@
import json
import os

# pytype: disable=import-error
from oauth2client import client
from oauth2client import tools
# pytype: disable=import-error

HERE = os.path.dirname(__file__)
CLIENT_SECRETS_PATH = os.path.abspath(os.path.join(
Expand Down