aboutsummaryrefslogtreecommitdiffstats
path: root/python_client/fatcat_client/api_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'python_client/fatcat_client/api_client.py')
-rw-r--r--python_client/fatcat_client/api_client.py7
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):