Skip to content

Commit 3779b3a

Browse files
authored
Update get-metrics.py
1 parent fe4f03b commit 3779b3a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/get-metrics.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,17 @@
1111
COOKBOOKS_ID = os.environ['COOKBOOKS_ID']
1212
PRIVATE_KEY_ID = os.environ.get('PRIVATE_KEY_ID')
1313
PRIVATE_KEY = os.environ.get('PRIVATE_KEY')
14-
print(len(PRIVATE_KEY))
15-
print(type(PRIVATE_KEY))
1614
print(len(PRIVATE_KEY_ID))
1715
print(type(PRIVATE_KEY_ID))
16+
print(len(PRIVATE_KEY))
17+
print(type(PRIVATE_KEY))
18+
1819

1920
credentials_dict = {
2021
"type": "service_account",
2122
"project_id": "cisl-vast-pythia",
2223
"private_key_id": str(PRIVATE_KEY_ID),
23-
"private_key": str(PRIVATE_KEY).replace('\\n', '\n'),
24+
"private_key": str(PRIVATE_KEY),
2425
"client_email": "[email protected]",
2526
"client_id": "113402578114110723940",
2627
"auth_uri": "https://accounts.google.com/o/oauth2/auth",

0 commit comments

Comments
 (0)