Skip to content

Commit

Permalink
Add noqa to job_completion_callback to suppress linting warning
Browse files Browse the repository at this point in the history
  • Loading branch information
TaekyungHeo committed Aug 29, 2024
1 parent 1619234 commit d77aa7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cloudai/_core/base_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ async def handle_job_completion(self, completed_job: BaseJob):
else:
await self.handle_dependencies(completed_job)

async def job_completion_callback(self, job: BaseJob) -> None:
async def job_completion_callback(self, job: BaseJob) -> None: # noqa: B027
"""
Call callback functions upon job completion.
Expand Down

0 comments on commit d77aa7c

Please sign in to comment.