Skip to content

Commit d46a582

Browse files
committed
capitalization cleanup, capitalize chime line 208
1 parent 19d0cc1 commit d46a582

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/penn_chime/presentation.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def display_sidebar(st, d: Parameters) -> Parameters:
179179
st_obj = st.sidebar
180180
current_hospitalized_input = NumberInput(
181181
st_obj,
182-
"Currently Hospitalized COVID-19 Patients",
182+
"Currently hospitalized COVID-19 patients",
183183
min_value=0,
184184
value=d.current_hospitalized,
185185
step=1,
@@ -202,10 +202,10 @@ def display_sidebar(st, d: Parameters) -> Parameters:
202202
format="%f",
203203
)
204204
current_date_input = DateInput(
205-
st_obj, "Current date (Default is today)", value=d.current_date,
205+
st_obj, "Current date (default is today)", value=d.current_date,
206206
)
207207
date_first_hospitalized_input = DateInput(
208-
st_obj, "Date of first hospitalized case - Enter this date to have chime estimate the initial doubling time",
208+
st_obj, "Date of first hospitalized case (enter this date to have CHIME estimate the initial doubling time)",
209209
value=d.date_first_hospitalized,
210210
)
211211
mitigation_date_input = DateInput(
@@ -234,45 +234,45 @@ def display_sidebar(st, d: Parameters) -> Parameters:
234234
)
235235
hospitalized_days_input = NumberInput(
236236
st_obj,
237-
"Average Hospital Length of Stay (days)",
237+
"Average hospital length of stay (in days)",
238238
min_value=0,
239239
value=d.hospitalized.days,
240240
step=1,
241241
format="%i",
242242
)
243243
icu_days_input = NumberInput(
244244
st_obj,
245-
"Average Days in ICU",
245+
"Average days in ICU",
246246
min_value=0,
247247
value=d.icu.days,
248248
step=1,
249249
format="%i",
250250
)
251251
ventilated_days_input = NumberInput(
252252
st_obj,
253-
"Average Days on Ventilator",
253+
"Average days on ventilator",
254254
min_value=0,
255255
value=d.ventilated.days,
256256
step=1,
257257
format="%i",
258258
)
259259
market_share_pct_input = PercentInput(
260260
st_obj,
261-
"Hospital Market Share (%)",
261+
"Hospital market share (%)",
262262
min_value=0.5,
263263
value=d.market_share,
264264
)
265265
population_input = NumberInput(
266266
st_obj,
267-
"Regional Population",
267+
"Regional population",
268268
min_value=1,
269269
value=(d.population),
270270
step=1,
271271
format="%i",
272272
)
273273
infectious_days_input = NumberInput(
274274
st_obj,
275-
"Infectious Days",
275+
"Infectious days",
276276
min_value=0,
277277
value=d.infectious_days,
278278
step=1,

0 commit comments

Comments
 (0)