We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4dc4cc commit 29ac543Copy full SHA for 29ac543
requirements.txt
@@ -17,3 +17,4 @@ types-pytz
17
types-requests
18
gitlint>=0.13.0
19
-r ./zulip/integrations/bridge_with_matrix/requirements.txt
20
+-r ./zulip/integrations/google/requirements.txt
zulip/integrations/google/get-google-credentials
@@ -22,7 +22,6 @@ APPLICATION_NAME = "Zulip Calendar Bot"
22
HOME_DIR = os.path.expanduser("~")
23
CREDENTIALS_PATH = os.path.join(HOME_DIR, "google-credentials.json")
24
25
-
26
def get_credentials() -> Credentials:
27
"""Gets valid user credentials from storage.
28
@@ -58,5 +57,7 @@ def get_credentials() -> Credentials:
58
57
59
print("Storing credentials to " + CREDENTIALS_PATH)
60
+ return creds # Return the obtained credentials
61
+
62
63
get_credentials()
0 commit comments