Spaces:
Runtime error
Runtime error
changing the port for authentication to 7200
Browse files- google_manager/auth.py +1 -1
google_manager/auth.py
CHANGED
@@ -19,7 +19,7 @@ def authenticate(SCOPES):
|
|
19 |
creds.refresh(Request())
|
20 |
else:
|
21 |
flow = InstalledAppFlow.from_client_secrets_file("credentials.json", SCOPES)
|
22 |
-
creds = flow.run_local_server(port=
|
23 |
|
24 |
# Save the credentials for the next run
|
25 |
with open("token.json", "w") as token:
|
|
|
19 |
creds.refresh(Request())
|
20 |
else:
|
21 |
flow = InstalledAppFlow.from_client_secrets_file("credentials.json", SCOPES)
|
22 |
+
creds = flow.run_local_server(port=7200)
|
23 |
|
24 |
# Save the credentials for the next run
|
25 |
with open("token.json", "w") as token:
|