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 redirectUri = self.redirectUri
if not state: if not state:
if not self.state: print('state is not found. init the auth flow first or give the state as a parameter.') 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) oauth = OAuth2Session(self.clientId, state=state, redirect_uri=redirectUri)
oauthToken = oauth.fetch_token(self.tokenUrl, client_secret=self.clientSecret,authorization_response=response) oauthToken = oauth.fetch_token(self.tokenUrl, client_secret=self.clientSecret,authorization_response=response)
self.token = oauth._client.access_token self.token = oauth._client.access_token

View file

@ -10,7 +10,7 @@ from api import OpenbravoToBanqupAPI
from datetime import timedelta, date from datetime import timedelta, date
def extract_invoice(document): def extract_invoice(document):
url = ob_api_url+"Invoice?_where=documentNo='"+document+"'&_noActiveFilter=false" url = ob_api_url+"Invoice?_where=documentNo='"+document+"'&_noActiveFilter=false"
payload = {} payload = {}