Skip to content

Commit

Permalink
refactor: remove unused verbose parameter (now handled by app)
Browse files Browse the repository at this point in the history
  • Loading branch information
hollandjg committed Mar 4, 2024
1 parent 6a6ccc5 commit a64bb63
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@ def run_A02c_IOWAGA_thredds_prior(
data_url: str = typer.Option(data_url),
dataset_key: str = typer.Option(dataset_key),
output_dir: str = typer.Option(..., callback=validate_output_dir),
verbose: bool = False,
):
"""
TODO: add docstring
Expand Down
1 change: 0 additions & 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 @@ -90,7 +90,6 @@ def run_B01_SL_load_single_file(
ID_flag: bool = True,
plot_flag: bool = True,
output_dir: str = typer.Option(..., callback=validate_output_dir),
verbose: bool = False,
):
"""
Open an ICEsat2 tbeam_stats.pyrack, apply filters and corrections, and output smoothed photon heights on a regular grid in an .nc file.
Expand Down
1 change: 0 additions & 1 deletion src/icesat2_tracks/analysis_db/B02_make_spectra_gFT.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ def run_B02_make_spectra_gFT(
batch_key: str = typer.Option(..., callback=validate_batch_key),
ID_flag: bool = True,
output_dir: str = typer.Option(None, callback=validate_output_dir),
verbose: bool = False,
):
"""
TODO: add docstring
Expand Down
1 change: 0 additions & 1 deletion src/icesat2_tracks/analysis_db/B03_plot_spectra_ov.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ def run_B03_plot_spectra_ov(
batch_key: str = typer.Option(..., callback=validate_batch_key),
ID_flag: bool = True,
output_dir: str = typer.Option(None, callback=validate_output_dir),
verbose: bool = False,
):
"""
TODO: add docstring
Expand Down
1 change: 0 additions & 1 deletion src/icesat2_tracks/analysis_db/B04_angle.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ def run_B04_angle(
batch_key: str = Option(..., callback=validate_batch_key),
ID_flag: bool = True,
output_dir: str = Option(..., callback=validate_output_dir),
verbose: bool = False,
):
"""
TODO: add docstring
Expand Down
1 change: 0 additions & 1 deletion src/icesat2_tracks/analysis_db/B05_define_angle.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ def define_angle(
batch_key: str = Option(..., callback=validate_batch_key),
ID_flag: bool = True,
output_dir: str = Option(..., callback=validate_output_dir),
verbose: bool = False,
):
"""
TODO: add docstring
Expand Down
1 change: 0 additions & 1 deletion src/icesat2_tracks/analysis_db/B06_correct_separate_var.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,6 @@ def run_B06_correct_separate_var(
batch_key: str = typer.Option(..., callback=validate_batch_key),
ID_flag: bool = True,
output_dir: str = typer.Option(..., callback=validate_output_dir),
verbose: bool = False,
):

color_schemes.colormaps2(31, gamma=1)
Expand Down

0 comments on commit a64bb63

Please sign in to comment.