fix is_feb

This commit is contained in:
matthewswspence 2025-02-25 10:18:22 -06:00
parent 292c08902a
commit 190bca2cac
No known key found for this signature in database
GPG key ID: FB458202A7852BA4

View file

@ -1405,7 +1405,7 @@ class DomainRequest(TimeStampedModel):
# generic_org_type is either blank or None, assume no
return False
if self.generic_org_type == DomainRequest.OrganizationChoices.FEDERAL:
return self.federal_type == DomainRequest.FederalChoices.EXECUTIVE
return self.federal_type == BranchChoices.EXECUTIVE
return False
def is_federal(self) -> Union[bool, None]: