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 4a3723d commit ce29120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nautilus/pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def __del__(self):
Close the pool.
"""
for attr in ['shutdown', 'close']:
for attr in ['close', ]:
if hasattr(self.pool, attr):
getattr(self.pool, attr)()
return

0 comments on commit ce29120

Please sign in to comment.