Skip to content

Commit 763ed6b

Browse files
committed
Write all arguments of reprocessing in lowercase
1 parent 13da377 commit 763ed6b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/osa/scripts/reprocessing.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def run_script(
3232
simulate: bool,
3333
force: bool,
3434
overwrite_tailcuts: bool,
35-
overwrite_catB: bool,
35+
overwrite_catb: bool,
3636
):
3737
"""Run the sequencer for a given date."""
3838
osa_config = Path(config).resolve()
@@ -60,7 +60,7 @@ def run_script(
6060
if overwrite_tailcuts:
6161
cmd.append("--overwrite-tailcuts")
6262

63-
if overwrite_catB:
63+
if overwrite_catb:
6464
cmd.append("--overwrite-catB")
6565

6666
# Append the telescope to the command in the last place
@@ -115,7 +115,7 @@ def main(
115115
simulate: bool = False,
116116
force: bool = False,
117117
overwrite_tailcuts: bool = False,
118-
overwrite_catB: bool = False,
118+
overwrite_catb: bool = False,
119119
):
120120
"""
121121
Loop over the dates listed in the input file and launch the script for each of them.
@@ -143,7 +143,7 @@ def main(
143143
simulate,
144144
force,
145145
overwrite_tailcuts,
146-
overwrite_catB,
146+
overwrite_catb,
147147
)
148148
log.info("Waiting 1 minute to launch the process for the next date...\n")
149149
time.sleep(60)

0 commit comments

Comments
 (0)