Skip to content

Commit 19d0cc1

Browse files
committed
capitalization cleanup
1 parent 22baf26 commit 19d0cc1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/penn_chime/cli.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def parse_args():
5555
int,
5656
0,
5757
None,
58-
"Currently Hospitalized COVID-19 Patients (>= 0)",
58+
"Currently hospitalized COVID-19 patients (>= 0)",
5959
True,
6060
),
6161
(
@@ -74,7 +74,7 @@ def parse_args():
7474
"Doubling time before social distancing (days)",
7575
True,
7676
),
77-
("--hospitalized-days", int, 0, None, "Average Hospital Length of Stay (days)", True),
77+
("--hospitalized-days", int, 0, None, "Average hospital length of stay (in days)", True),
7878
(
7979
"--hospitalized-rate",
8080
float,
@@ -83,14 +83,14 @@ def parse_args():
8383
"Hospitalized Rate: 0.00001 - 1.0",
8484
True,
8585
),
86-
("--icu-days", int, 0, None, "Average Days in ICU", True),
87-
("--icu-rate", float, 0.0, 1.0, "ICU Rate: 0.0 - 1.0", True),
86+
("--icu-days", int, 0, None, "Average days in ICU", True),
87+
("--icu-rate", float, 0.0, 1.0, "ICU rate: 0.0 - 1.0", True),
8888
(
8989
"--market_share",
9090
float,
9191
0.00001,
9292
1.0,
93-
"Hospital Market Share (0.00001 - 1.0)",
93+
"Hospital market share (0.00001 - 1.0)",
9494
True,
9595
),
9696
("--infectious-days", float, 0.0, None, "Infectious days", True),
@@ -100,11 +100,11 @@ def parse_args():
100100
float,
101101
0.0,
102102
1.0,
103-
"Social Distancing Reduction Rate: 0.0 - 1.0",
103+
"Social distancing reduction rate: 0.0 - 1.0",
104104
True,
105105
),
106-
("--population", int, 1, None, "Regional Population >= 1", True),
107-
("--ventilated-days", int, 0, None, "Average Days on Ventilator", True),
106+
("--population", int, 1, None, "Regional population >= 1", 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(

0 commit comments

Comments
 (0)