Skip to content

Commit

Permalink
make generate files write path optional (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndamania00 authored Oct 25, 2024
1 parent 5bfd253 commit 73112e5
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 73112e5

Please sign in to comment.