Skip to content

Commit

Permalink
cast invoice ids to set
Browse files Browse the repository at this point in the history
  • Loading branch information
leslie-alldridge committed Aug 1, 2022
1 parent 24372c8 commit cbc702b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def main():
# Note: You MUST use a file named invoices.csv
# The file MUST have a column named InvoiceNumber
# Refer to README.md for examples
invoice_ids = open_csv_file()
invoice_ids = set(open_csv_file())

# Safety mechanism for those wanting to check before committing
if DRY_RUN == "Enabled":
Expand Down

0 comments on commit cbc702b

Please sign in to comment.