Add comment to jumpstart deploy

This commit is contained in:
Rebecca Hsieh 2024-02-12 10:16:45 -08:00
parent 08521353a4
commit ee76372a19
No known key found for this signature in database

View file

@ -19,11 +19,13 @@ def write_header(writer, columns, max_dm_count, get_domain_managers):
Receives params from the parent methods and outputs a CSV with a header row.
Works with write_header as long as the same writer object is passed.
"""
# If we have domain managers, set column title dynamically here
if get_domain_managers:
for i in range(1, max_dm_count + 1):
columns.append(f"Domain manager email {i}")
writer.writerow("hello")
writer.writerow("hellotesting123")
writer.writerow(columns)