From eef6e246f0aeef67f605948f9a0a167e03d1a3df Mon Sep 17 00:00:00 2001 From: Enrique Barcelli Date: Fri, 28 Mar 2025 08:11:46 +0800 Subject: [PATCH] Fix indentation --- authhandler.py | 2 +- extract_invoice.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/authhandler.py b/authhandler.py index 9c6ebd3..66b81af 100644 --- a/authhandler.py +++ b/authhandler.py @@ -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 diff --git a/extract_invoice.py b/extract_invoice.py index 414e954..99a7550 100644 --- a/extract_invoice.py +++ b/extract_invoice.py @@ -10,7 +10,7 @@ from api import OpenbravoToBanqupAPI from datetime import timedelta, date def extract_invoice(document): - + url = ob_api_url+"Invoice?_where=documentNo='"+document+"'&_noActiveFilter=false" payload = {}