Skip to content

Commit 2249012

Browse files
Style: Lint.
1 parent a326aec commit 2249012

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

zulip/integrations/google/get-google-credentials

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
import argparse
33
import 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

99
parser = argparse.ArgumentParser(add_help=False)
1010
parser.add_argument(

zulip/integrations/google/google-calendar

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import dateutil.parser
1515
import pytz
1616

1717
try:
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
2020
except ImportError:
2121
logging.exception("Install google-api-python-client and google-auth-oauthlib")

0 commit comments

Comments
 (0)