Skip to content

Commit 4645121

Browse files
jeremymanningclaude
andcommitted
Fix black code formatting issue
- Format async_executor_simple.py function signature to meet line length requirements - Ensure all code passes black --check validation for CI/CD 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent d4ab00b commit 4645121

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

clustrix/async_executor_simple.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
class AsyncJobResult:
1616
"""Represents the result of an asynchronously submitted job."""
1717

18-
def __init__(self, future: Future, job_id: str, executor: Optional[ClusterExecutor]):
18+
def __init__(
19+
self, future: Future, job_id: str, executor: Optional[ClusterExecutor]
20+
):
1921
self._future = future
2022
self.job_id = job_id
2123
self._executor = executor

0 commit comments

Comments
 (0)