File tree 1 file changed +6
-7
lines changed
1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -79,13 +79,12 @@ def __init__(
79
79
# The scopes of access granted by the access_token as a list
80
80
self .access_token_scope = None
81
81
82
- if access_token :
83
- # The token that your application sends to authorize a Google API request
84
- self .access_token = access_token
85
- if refresh_token :
86
- # A token that you can use to obtain a new access token
87
- # Refresh tokens are valid until the user revokes access
88
- self .refresh_token = None
82
+ # The token that your application sends to authorize a Google API request
83
+ self .access_token = access_token
84
+
85
+ # A token that you can use to obtain a new access token
86
+ # Refresh tokens are valid until the user revokes access
87
+ self .refresh_token = refresh_token
89
88
90
89
def request_codes (self ):
91
90
"""Identifies your application and access scopes with Google's
You can’t perform that action at this time.
0 commit comments