Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cg505 committed Dec 12, 2024
1 parent de117ae commit 453ba7a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions sky/jobs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@
@timeline.event
@usage_lib.entrypoint
def launch(
task: Union['sky.Task', 'sky.Dag'],
name: Optional[str] = None,
stream_logs: bool = True,
detach_run: bool = False,
retry_until_up: bool = False,
# TODO(cooperc): remove fast arg before 0.8.0
fast: bool = True,
task: Union['sky.Task', 'sky.Dag'],
name: Optional[str] = None,
stream_logs: bool = True,
detach_run: bool = False,
retry_until_up: bool = False,
# TODO(cooperc): remove fast arg before 0.8.0
fast: bool = True, # pylint: disable=unused-argument for compatibility
) -> None:
# NOTE(dev): Keep the docstring consistent between the Python API and CLI.
"""Launch a managed job.
Expand Down

0 comments on commit 453ba7a

Please sign in to comment.