Remove old code

This commit is contained in:
zandercymatics 2024-01-26 10:00:48 -07:00
parent a2dece7e5b
commit 3d703b2217
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -250,7 +250,7 @@ class DomainInformation(TimeStampedModel):
for field in common_fields:
# If the field isn't many_to_many, populate the da_dict.
# If it is, populate da_many_to_many_dict as we need to save this later.
if hasattr(domain_application, field) and field not in info_many_to_many_fields:
if hasattr(domain_application, field):
if field not in info_many_to_many_fields:
da_dict[field] = getattr(domain_application, field)
else: