Skip to content

Commit 0cd6b18

Browse files
authored
adding missing param and fixing typo (#2084)
1 parent 5ff844a commit 0cd6b18

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

ansible/templates/nhsn-params-prod.json.j2

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"indicator": {
99
"wip_signal": true,
1010
"static_file_dir": "./static",
11-
"socrata_token": "{{ nhsn_token }}"
11+
"socrata_token": "{{ nhsn_token }}",
12+
"export_start_date": "2020-08-08"
1213
},
1314
"validation": {
1415
"common": {

nhsn/delphi_nhsn/pull.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def pull_data(socrata_token: str, dataset_id: str):
2828

2929

3030
def pull_nhsn_data(socrata_token: str, backup_dir: str, custom_run: bool, logger: Optional[logging.Logger] = None):
31-
"""Pull the latest NSSP ER visits data, and conforms it into a dataset.
31+
"""Pull the latest NHSN hospital admission data, and conforms it into a dataset.
3232
3333
The output dataset has:
3434
@@ -77,7 +77,7 @@ def pull_nhsn_data(socrata_token: str, backup_dir: str, custom_run: bool, logger
7777
def pull_preliminary_nhsn_data(
7878
socrata_token: str, backup_dir: str, custom_run: bool, logger: Optional[logging.Logger] = None
7979
):
80-
"""Pull the latest NSSP ER visits data, and conforms it into a dataset.
80+
"""Pull the latest preliminary NHSN hospital admission data, and conforms it into a dataset.
8181
8282
The output dataset has:
8383

0 commit comments

Comments
 (0)