Skip to content

Commit

Permalink
fix: lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
amitkparekh committed Dec 3, 2023
1 parent 2b8cb74 commit df93565
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/emma_experience_hub/commands/simbot/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ def build_compose_file_options(*, with_gpu: bool = False) -> str:
@app.command()
def print_compose_config(
with_gpu: bool = typer.Option(
False, "--gpu", "--with-gpu", help="Run the services on the GPU."
False, # noqa: WPS425
"--gpu",
"--with-gpu",
is_flag=True,
help="Run the services on the GPU.",
),
) -> None:
"""Print the config for the docker compose."""
Expand Down

0 comments on commit df93565

Please sign in to comment.