Skip to content

Commit 027422b

Browse files
committed
Resolve conflicts with develop
2 parents a9777c1 + 4d1417d commit 027422b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed
File renamed without changes.

src/penn_chime/locales/en.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ en:
9797
<a download="{filename}" href="data:file/csv;base64,{csv}">Download {filename}</a>
9898
presentation-excel-download: |+
9999
Download the PPE Forecasting Calculator: <a download="{filename}" href="data:file/xlsx;base64,{excel}">{filename}</a>.
100+
<br />
101+
<br />
102+
This Excel-based calculator can use input from any model. To use CHIME’s projections with your existing parameters, download the csv below:
100103
admits_hospitalized: "Hospitalized Admissions"
101104
admits_icu: "ICU Admissions"
102105
admits_ventilated: "Ventilated Admissions"

src/penn_chime/model/ppe.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@ class PPE:
99
def __init__(self, env: Dict[str, str]):
1010
"""__init__."""
1111
self.assets = assets = env['ASSETS']
12-
self.filename = filename = "PPE_Calculator_for_COVID-19.xlsx"
12+
self.filename = filename = "PPE_Calculator.xlsx"
1313
self.src = os.path.join(assets, filename)
14-
self.screenshot = os.path.join(assets, 'PPE_Screenshot.jpg')

0 commit comments

Comments
 (0)