Skip to content

Commit 35ee661

Browse files
authored
Fix text in CLI help
1 parent 330792c commit 35ee661

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def parse_args():
9292
"Social Distancing Reduction Rate: 0.0 - 1.0",
9393
),
9494
("--susceptible", int, 1, None, "Regional Population >= 1"),
95-
("--ventilated-los", int, 0, None, "Hospitalized Length of Stay (days)"),
95+
("--ventilated-los", int, 0, None, "Ventilated Length of Stay (days)"),
9696
("--ventilated-rate", float, 0.0, 1.0, "Ventilated Rate: 0.0 - 1.0"),
9797
):
9898
parser.add_argument(arg, type=validator(cast, min_value, max_value))

0 commit comments

Comments
 (0)