Skip to content

Commit

Permalink
Fix dest must exist bug (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
tayden committed Jan 30, 2025
1 parent 3e262ed commit 8430db2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kelp_o_matic/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def find_kelp(
dest: Annotated[
Path,
typer.Argument(
exists=True,
exists=False,
dir_okay=False,
file_okay=True,
writable=True,
Expand Down Expand Up @@ -98,7 +98,7 @@ def find_mussels(
dest: Annotated[
Path,
typer.Argument(
exists=True,
exists=False,
dir_okay=False,
file_okay=True,
writable=True,
Expand Down

0 comments on commit 8430db2

Please sign in to comment.