Skip to content

Commit

Permalink
Style: Lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
theofficialvedantjoshi committed Jan 8, 2025
1 parent a326aec commit 2249012
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions zulip/integrations/google/get-google-credentials
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import argparse
import os

from google.auth.transport.requests import Request
from google.oauth2.credentials import Credentials
from google_auth_oauthlib.flow import InstalledAppFlow # type: ignore[import-untyped]
from google.auth.transport.requests import Request # type: ignore[import-not-found]
from google.oauth2.credentials import Credentials # type: ignore[import-not-found]
from google_auth_oauthlib.flow import InstalledAppFlow

parser = argparse.ArgumentParser(add_help=False)
parser.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion zulip/integrations/google/google-calendar
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import dateutil.parser
import pytz

try:
from google.oauth2.credentials import Credentials
from google.oauth2.credentials import Credentials # type: ignore[import-not-found]
from googleapiclient.discovery import build
except ImportError:
logging.exception("Install google-api-python-client and google-auth-oauthlib")
Expand Down

0 comments on commit 2249012

Please sign in to comment.