File tree 2 files changed +4
-4
lines changed
zulip/integrations/google
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
import argparse
3
3
import os
4
4
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
8
8
9
9
parser = argparse .ArgumentParser (add_help = False )
10
10
parser .add_argument (
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import dateutil.parser
15
15
import pytz
16
16
17
17
try :
18
- from google .oauth2 .credentials import Credentials
18
+ from google .oauth2 .credentials import Credentials # type: ignore[import-not-found]
19
19
from googleapiclient .discovery import build
20
20
except ImportError :
21
21
logging .exception ("Install google-api-python-client and google-auth-oauthlib" )
You can’t perform that action at this time.
0 commit comments