File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
zulip/integrations/google Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22import argparse
33import os
44
5- from google .auth .transport .requests import Request
6- from google .oauth2 .credentials import Credentials
7- from google_auth_oauthlib .flow import InstalledAppFlow # type: ignore[import-untyped]
5+ from google .auth .transport .requests import Request # type: ignore[import-not-found]
6+ from google .oauth2 .credentials import Credentials # type: ignore[import-not-found]
7+ from google_auth_oauthlib .flow import InstalledAppFlow
88
99parser = argparse .ArgumentParser (add_help = False )
1010parser .add_argument (
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import dateutil.parser
1515import pytz
1616
1717try :
18- from google .oauth2 .credentials import Credentials
18+ from google .oauth2 .credentials import Credentials # type: ignore[import-not-found]
1919 from googleapiclient .discovery import build
2020except ImportError :
2121 logging .exception ("Install google-api-python-client and google-auth-oauthlib" )
You can’t perform that action at this time.
0 commit comments