pernofence
Results
2
comments of
pernofence
We are having the same issue. We are currently using two client objects, one is using a private connection auth, and the other is using code flow auth. When using...
This workaround seems to work for me: ```python from xero_python.api_client import Configuration as BaseConfiguration from xero_python.api_client.configuration import TypeWithDefault class Workaround(TypeWithDefault): def __call__(cls, *args, **kwargs): return super(TypeWithDefault, cls).__call__(*args, **kwargs) class Configuration(BaseConfiguration,...