Skip to content

Commit

Permalink
fix: make output_dir a required argument
Browse files Browse the repository at this point in the history
  • Loading branch information
cpaniaguam authored Feb 7, 2024
1 parent 95120c2 commit ce4483a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/icesat2_tracks/analysis_db/B01_SL_load_single_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def run_B01_SL_load_single_file(
batch_key: str = typer.Option(..., callback=validate_batch_key),
ID_flag: bool = True,
plot_flag: bool = True,
output_dir: str = typer.Option(None, callback=validate_output_dir),
output_dir: str = typer.Option(..., callback=validate_output_dir),
verbose: bool = False
):
"""
Expand Down

0 comments on commit ce4483a

Please sign in to comment.