diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-04 14:45:30 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-04 14:45:30 -0700 |
commit | 3d992047a83d0668e484700f7077753752adee21 (patch) | |
tree | 261a960507c715ece645ddc0cb56448323d59df4 /python_client/fatcat_client | |
parent | d5309e6e2d8d8cd4244e24ac1773ce76434ce46d (diff) | |
download | fatcat-3d992047a83d0668e484700f7077753752adee21.tar.gz fatcat-3d992047a83d0668e484700f7077753752adee21.zip |
monkeypatch annoying pytest shutdown exception
Diffstat (limited to 'python_client/fatcat_client')
-rw-r--r-- | python_client/fatcat_client/api_client.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/python_client/fatcat_client/api_client.py b/python_client/fatcat_client/api_client.py index 8ebab103..af25fc2c 100644 --- a/python_client/fatcat_client/api_client.py +++ b/python_client/fatcat_client/api_client.py @@ -76,8 +76,11 @@ class ApiClient(object): self.user_agent = 'Swagger-Codegen/1.0.0/python' def __del__(self): - self.pool.close() - self.pool.join() + try: + self.pool.close() + self.pool.join() + except: + pass @property def user_agent(self): |