Skip to content

Commit aa319b9

Browse files
fixed for new python versions
1 parent 933c940 commit aa319b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

smp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def limited_thread_worker(executor_reference, work_queue,
424424
process_count=1, process_id=0):
425425
from concurrent.futures.thread import _worker
426426
limit_num_threads(process_count, process_id)
427-
_worker(executor_reference, work_queue)
427+
_worker(executor_reference, work_queue, None, [])
428428

429429
class LimitedThreadPoolExecutor(ThreadPoolExecutor):
430430
def __init__(self, max_workers=None):

0 commit comments

Comments
 (0)