Skip to content

Commit 442b3b9

Browse files
krivardchinandrew
andauthored
fix bad copypasta
Co-authored-by: chinandrew <chinandrew96@gmail.com>
1 parent e5b138c commit 442b3b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/acquisition/covidcast/delete_batch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def handle_file(deletion_file, database, logger):
2929
with open(deletion_file) as f:
3030
for line in f:
3131
fields = line.strip().split(",")
32-
if len(field) < 9: continue
32+
if len(fields) < 9: continue
3333
rows.append(fields + ["day"])
3434
rows = rows[1:]
3535
try:

0 commit comments

Comments
 (0)