Skip to content

Commit

Permalink
Update csv_export.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zandercymatics committed Jul 17, 2024
1 parent db5333b commit f9bca39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/registrar/utility/csv_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ def parse_row(cls, columns, model):
domain_type = f"{human_readable_domain_org_type} - {human_readable_domain_federal_type}"

security_contact_email = model.get("security_contact_email")
invalid_emails = [DefaultEmail.LEGACY_DEFAULT.value, DefaultEmail.PUBLIC_CONTACT_DEFAULT.value]
invalid_emails = {DefaultEmail.LEGACY_DEFAULT.value, DefaultEmail.PUBLIC_CONTACT_DEFAULT.value}
if (
not security_contact_email
or not isinstance(security_contact_email, str)
Expand Down

0 comments on commit f9bca39

Please sign in to comment.