From ce2912012e8bc097de0d6938adad3bfd6c891672 Mon Sep 17 00:00:00 2001 From: "Johannes U. Lange" Date: Tue, 19 Nov 2024 08:34:09 -0500 Subject: [PATCH] fixed test failure --- nautilus/pool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nautilus/pool.py b/nautilus/pool.py index 11fd633..f115f37 100644 --- a/nautilus/pool.py +++ b/nautilus/pool.py @@ -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