Spaces:
Running
Running
Commit
·
69682e3
1
Parent(s):
326d6d4
debugging
Browse files
agent.py
CHANGED
@@ -24,6 +24,10 @@ conf = os.environ.get('GOOGLE_APPLICATION_CREDENTIALS')
|
|
24 |
|
25 |
service_account_info = json.loads(conf)
|
26 |
print(service_account_info)
|
|
|
|
|
|
|
|
|
27 |
|
28 |
credentials = service_account.Credentials.from_service_account_info(service_account_info)
|
29 |
|
|
|
24 |
|
25 |
service_account_info = json.loads(conf)
|
26 |
print(service_account_info)
|
27 |
+
print(type(service_account_info))
|
28 |
+
service_account_info = eval(service_account_info)
|
29 |
+
print(service_account_info)
|
30 |
+
print(type(service_account_info))
|
31 |
|
32 |
credentials = service_account.Credentials.from_service_account_info(service_account_info)
|
33 |
|