Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
rmcolq committed Apr 21, 2021
1 parent 1f0e161 commit 2321c01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafunk/process_gisaid_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ def get_one_metadata_line(dict, fields_list, sep = ','):
l is a 'sep'-separated string formatted for printing
"""
l = sep.join([dict[x] for x in fields_list]) + '\n'
l = sep.join([str(dict[x]) for x in fields_list]) + '\n'
return(l)


Expand Down

0 comments on commit 2321c01

Please sign in to comment.