Skip to content

Commit

Permalink
fixed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mjriley committed Dec 12, 2024
1 parent 620c669 commit 1d208a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def add_arguments(self, parser):
parser.add_argument('--resume_id', help='form ID to start at, within the CSV file')

def handle(self, domain, filename, resume_id=None, **options):
# expects the filename to have a CSV with a header containing "Deletion Status" and "Form ID" fields
# expects the filename to have a CSV with a header containing a "Form ID" field
with open(filename, mode='r', encoding='utf-8-sig') as csvfile:
reader = csv.reader(csvfile, delimiter=',')
self._process_rows(reader, domain, resume_id)
Expand Down

0 comments on commit 1d208a7

Please sign in to comment.