master
Lukas Schulz 2020-12-20 13:21:25 +01:00
parent 3bd67cf9a5
commit c5417606d6
1 changed files with 2 additions and 2 deletions

View File

@ -164,8 +164,8 @@ def get_access_token():
code = sp_oauth.get_auth_response()
token = sp_oauth.get_access_token(code, as_dict=False)
else:
if is_token_expired()
token_info = refresh_access_token(token_info)
if is_token_expired():
token_info = refresh_access_token(token_info)
token = token_info["access_token"]
def is_token_expired():