Skip to content

Commit 475b4df

Browse files
committed
Update help text
1 parent 62716fa commit 475b4df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/penn_chime/cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def parse_args():
7474
"Doubling time before social distancing (days)",
7575
True,
7676
),
77-
("--hospitalized-days", int, 0, None, "Hospital Length of Stay (days)", True),
77+
("--hospitalized-days", int, 0, None, "Average Hospital Length of Stay (days)", True),
7878
(
7979
"--hospitalized-rate",
8080
float,
@@ -83,7 +83,7 @@ def parse_args():
8383
"Hospitalized Rate: 0.00001 - 1.0",
8484
True,
8585
),
86-
("--icu-days", int, 0, None, "Days in ICU", True),
86+
("--icu-days", int, 0, None, "Average Days in ICU", True),
8787
("--icu-rate", float, 0.0, 1.0, "ICU Rate: 0.0 - 1.0", True),
8888
(
8989
"--market_share",
@@ -104,7 +104,7 @@ def parse_args():
104104
True,
105105
),
106106
("--population", int, 1, None, "Regional Population >= 1", True),
107-
("--ventilated-days", int, 0, None, "Days on Ventilator", True),
107+
("--ventilated-days", int, 0, None, "Average Days on Ventilator", True),
108108
("--ventilated-rate", float, 0.0, 1.0, "Ventilated Rate: 0.0 - 1.0", True),
109109
):
110110
parser.add_argument(arg, type=validator(arg, cast, min_value, max_value, required))

0 commit comments

Comments
 (0)