Skip to content

Commit 02b3aa0

Browse files
authored
[chng] Update expected file count
We now get an additional file for flu inpatient.
1 parent 535e0cd commit 02b3aa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

changehc/delphi_changehc/download_ftp_files.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ def get_files_from_dir(sftp, filedate, out_path):
3232
not path.exists(path.join(out_path, filename)):
3333
filepaths_to_download[filename] = path.join(out_path, filename)
3434

35-
# make sure we don't download more than 6 files per day
36-
assert len(filepaths_to_download) <= 6, "more files dropped than expected"
35+
# make sure we don't download more than 7 files per day
36+
assert len(filepaths_to_download) <= 7, "more files dropped than expected"
3737

3838
# download!
3939
for infile, outfile in filepaths_to_download.items():

0 commit comments

Comments
 (0)