set debug to False for the xero getCurrencies command w/ burnettk (#9)

Co-authored-by: burnettk <burnettk@users.noreply.github.com>
This commit is contained in:
jasquat 2023-06-06 11:18:17 -04:00 committed by GitHub
parent df79d5f339
commit e93872d42c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,9 +48,11 @@ class GetCurrencies:
token_store = {}
token_store_key = "token"
# NOTE: setting debug to True causes xero to cache the client when
# it's in a working state
api_client = ApiClient(
Configuration(
debug=True,
debug=False,
oauth2_token=OAuth2Token(
client_id=self.client_id, client_secret=self.client_secret
),