Skip to content

Commit

Permalink
Update executor.py (#480)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Dec 16, 2024
1 parent 90fcef5 commit d2fb1a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion a_sync/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def submit(self, fn: Callable[P, T], *args: P.args, **kwargs: P.kwargs) -> "asyn
fut.set_exception(e)
else:
fut = wrap_future(self._super_submit(fn, *args, **kwargs)) # type: ignore [assignment]
self._start_debug_daemon(fut, fn, *args, **kwargs)
self._ensure_debug_daemon(fut, fn, *args, **kwargs)
return fut

def __repr__(self) -> str:
Expand Down

0 comments on commit d2fb1a2

Please sign in to comment.