Skip to content

Commit

Permalink
fixed test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesulf committed Nov 19, 2024
1 parent 938c0f6 commit 4a3723d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nautilus/pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ def __del__(self):
Close the pool.
"""
for attr in ['close', 'shutdown']:
for attr in ['shutdown', 'close']:
if hasattr(self.pool, attr):
getattr(self.pool, attr)()
return

0 comments on commit 4a3723d

Please sign in to comment.