diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-09 21:49:24 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-09 21:49:32 -0700 |
commit | 3c576b98c050b433dc5628e0ff845cafce847858 (patch) | |
tree | 07720ad5b7edde9b4c0776ffb36ceebd1f1f951e /python_client/fatcat_client | |
parent | a7350cf1dbc6ed30f9d6620ef68db1cbf49fd43e (diff) | |
download | fatcat-3c576b98c050b433dc5628e0ff845cafce847858.tar.gz fatcat-3c576b98c050b433dc5628e0ff845cafce847858.zip |
add work-around for weird TypeWithDefault config class
Expect this to fix a serious bug with configuration "contamination"
between priv_api and regular api. :codinghorror:
Diffstat (limited to 'python_client/fatcat_client')
-rw-r--r-- | python_client/fatcat_client/configuration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python_client/fatcat_client/configuration.py b/python_client/fatcat_client/configuration.py index 5cc1fe37..5423065d 100644 --- a/python_client/fatcat_client/configuration.py +++ b/python_client/fatcat_client/configuration.py @@ -37,7 +37,7 @@ class TypeWithDefault(type): cls._default = copy.copy(default) -class Configuration(six.with_metaclass(TypeWithDefault, object)): +class Configuration(object): """NOTE: This class is auto generated by the swagger code generator program. Ref: https://github.com/swagger-api/swagger-codegen |