Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 3, 2025
1 parent 05f1604 commit 1f5cbaf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion executorlib/base/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,11 @@ def future_queue(self) -> Optional[queue.Queue]:
return self._future_queue

def submit(
self, fn: Callable, *args, resource_dict: Optional[dict] = None, **kwargs # type: ignore
self,
fn: Callable,
*args,
resource_dict: Optional[dict] = None,
**kwargs, # type: ignore
) -> Future:
"""
Submits a callable to be executed with the given arguments.
Expand Down

0 comments on commit 1f5cbaf

Please sign in to comment.