ran the formatteR

This commit is contained in:
asaki222 2024-10-21 09:46:47 -04:00
parent 6599515f68
commit db0806b6f6
No known key found for this signature in database
GPG key ID: 2C4F802060E06EA4

View file

@ -1337,7 +1337,7 @@ class DomainRequest(TimeStampedModel):
@property @property
def converted_organization_name(self): def converted_organization_name(self):
""""returns the organization field if the domain request is in a portfolio """ "returns the organization field if the domain request is in a portfolio
otherwise it returns the organization name from the domain request object itself""" otherwise it returns the organization name from the domain request object itself"""
if self.portfolio: if self.portfolio:
return self.portfolio.organization_name return self.portfolio.organization_name
@ -1345,7 +1345,7 @@ class DomainRequest(TimeStampedModel):
@property @property
def converted_generic_org_type(self): def converted_generic_org_type(self):
""""returns the organization type if the domain request is in a portfolio """ "returns the organization type if the domain request is in a portfolio
otherwise it returns the organization type from the domain request object itself""" otherwise it returns the organization type from the domain request object itself"""
if self.portfolio: if self.portfolio:
return self.portfolio.organization_type return self.portfolio.organization_type