Skip to content

Commit

Permalink
make generate files write path optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ndamania00 committed Oct 25, 2024
1 parent 94ede5f commit a6b5f66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions liminal/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ def generate_files(
benchling_tenant: str = typer.Argument(
..., help="Benchling tenant (or alias) to connect to."
),
write_path: Path = typer.Argument(
..., help="The path to write the generated files to."
write_path: Path = typer.Option(
Path("."), help="The path to write the generated files to."
),
) -> None:
current_revision_id, benchling_connection = read_local_env_file(
Expand Down

0 comments on commit a6b5f66

Please sign in to comment.