Skip to content

Commit

Permalink
lint model
Browse files Browse the repository at this point in the history
  • Loading branch information
zandercymatics committed Oct 30, 2024
1 parent c465b7f commit dfb59a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/registrar/models/domain_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -1152,7 +1152,9 @@ def is_requesting_new_suborganization(self) -> bool:
# If a suborganization already exists, it can't possibly be a new one
if self.sub_organization:
return False
return bool(self.requested_suborganization and self.suborganization_city and self.suborganization_state_territory)
return bool(
self.requested_suborganization and self.suborganization_city and self.suborganization_state_territory
)

# ## Form unlocking steps ## #
#
Expand Down

0 comments on commit dfb59a6

Please sign in to comment.