Skip to content

Commit 63a5816

Browse files
committed
fix: cancel_futures arg not supported until 3.8
1 parent 02ceda2 commit 63a5816

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sasctl/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1534,7 +1534,7 @@ def __enter__(self):
15341534

15351535
def __exit__(self, exc_type, exc_val, exc_tb):
15361536
if self._pool is not None:
1537-
self._pool.shutdown(wait=False, cancel_futures=True)
1537+
self._pool.shutdown(wait=False)
15381538

15391539
def __next__(self):
15401540
if self._pool is None:

0 commit comments

Comments
 (0)