This commit is contained in:
zandercymatics 2024-11-26 14:20:37 -07:00
parent e9338520fd
commit ac9ea095ed
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7
2 changed files with 3 additions and 2 deletions

View file

@ -198,8 +198,8 @@ class BaseExport(ABC):
# We can infer that if we're passing in annotations, # We can infer that if we're passing in annotations,
# we want to grab the result of said annotation. # we want to grab the result of said annotation.
if computed_fields : if computed_fields:
related_table_fields.extend(computed_fields .keys()) related_table_fields.extend(computed_fields.keys())
# Get prexisting fields on the model # Get prexisting fields on the model
model_fields = set() model_fields = set()

View file

@ -49,6 +49,7 @@ class DefaultUserValues(StrEnum):
- SYSTEM: "System" <= Default username - SYSTEM: "System" <= Default username
- UNRETRIEVED: "Unretrieved" <= Default email state - UNRETRIEVED: "Unretrieved" <= Default email state
""" """
HELP_EMAIL = "help@get.gov" HELP_EMAIL = "help@get.gov"
SYSTEM = "System" SYSTEM = "System"
UNRETRIEVED = "Unretrieved" UNRETRIEVED = "Unretrieved"