File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -79,13 +79,12 @@ def __init__(
7979 # The scopes of access granted by the access_token as a list
8080 self .access_token_scope = None
8181
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
8988
9089 def request_codes (self ):
9190 """Identifies your application and access scopes with Google's
You can’t perform that action at this time.
0 commit comments