Koshti10 commited on
Commit
bf5086c
1 Parent(s): b176147

Update driveapi/service.py

Browse files
Files changed (1) hide show
  1. driveapi/service.py +3 -3
driveapi/service.py CHANGED
@@ -9,9 +9,9 @@ def get_credentials():
9
  # Create credentials object
10
  credentials_info = {
11
  'type': 'service_account',
12
- 'client_email': client_email,
13
- 'private_key': private_key,
14
- 'token_uri': token_uri,
15
  'scopes': ['https://www.googleapis.com/auth/drive']
16
  }
17
 
 
9
  # Create credentials object
10
  credentials_info = {
11
  'type': 'service_account',
12
+ 'client_email': str(client_email),
13
+ 'private_key': str(private_key),
14
+ 'token_uri': str(token_uri),
15
  'scopes': ['https://www.googleapis.com/auth/drive']
16
  }
17