Fix indentation

This commit is contained in:
Enrique Barcelli 2025-03-28 08:11:46 +08:00
parent 8e35be1cec
commit eef6e246f0
Signed by: kikobar
GPG key ID: 006C13A68E25D3B7
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ class AuthHandler:
redirectUri = self.redirectUri
if not state:
if not self.state: print('state is not found. init the auth flow first or give the state as a parameter.')
state = self.state
state = self.state
oauth = OAuth2Session(self.clientId, state=state, redirect_uri=redirectUri)
oauthToken = oauth.fetch_token(self.tokenUrl, client_secret=self.clientSecret,authorization_response=response)
self.token = oauth._client.access_token