зеркало из
1
0
Форкнуть 0

fix AssertionError: Invalid parameter type

This commit is contained in:
Laurent Michel 2024-06-25 11:24:52 +02:00
Родитель 76f0505fd8
Коммит f51f5bf98c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -21,7 +21,7 @@ class MyClientAssertionCredential(object):
def get_token(self, *scopes, **kwargs):
# get the token using the application
token = self.app.acquire_token_for_client(scopes)
token = self.app.acquire_token_for_client(list(scopes))
if 'error' in token:
raise Exception(token['error_description'])
expires_on = time.time() + token['expires_in']