Skip to content

Commit

Permalink
adding missing param and fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aysim319 committed Dec 10, 2024
1 parent 5ff844a commit 45dcf43
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ansible/templates/nhsn-params-prod.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"indicator": {
"wip_signal": true,
"static_file_dir": "./static",
"socrata_token": "{{ nhsn_token }}"
"socrata_token": "{{ nhsn_token }}",
"export_start_date": "2020-08-08"
},
"validation": {
"common": {
Expand Down
4 changes: 2 additions & 2 deletions nhsn/delphi_nhsn/pull.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def pull_data(socrata_token: str, dataset_id: str):


def pull_nhsn_data(socrata_token: str, backup_dir: str, custom_run: bool, logger: Optional[logging.Logger] = None):
"""Pull the latest NSSP ER visits data, and conforms it into a dataset.
"""Pull the latest NHSN hospital admission data, and conforms it into a dataset.
The output dataset has:
Expand Down Expand Up @@ -77,7 +77,7 @@ def pull_nhsn_data(socrata_token: str, backup_dir: str, custom_run: bool, logger
def pull_preliminary_nhsn_data(
socrata_token: str, backup_dir: str, custom_run: bool, logger: Optional[logging.Logger] = None
):
"""Pull the latest NSSP ER visits data, and conforms it into a dataset.
"""Pull the latest preliminary NHSN hospital admission data, and conforms it into a dataset.
The output dataset has:
Expand Down

0 comments on commit 45dcf43

Please sign in to comment.