From 560a07f67335ccbeca1b1ffb8d83c98159d5fb13 Mon Sep 17 00:00:00 2001 From: David Kennedy Date: Thu, 2 Jan 2025 20:38:11 -0500 Subject: [PATCH] lint --- src/registrar/forms/domain_request_wizard.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/registrar/forms/domain_request_wizard.py b/src/registrar/forms/domain_request_wizard.py index 130a61e90..38ddc2851 100644 --- a/src/registrar/forms/domain_request_wizard.py +++ b/src/registrar/forms/domain_request_wizard.py @@ -144,7 +144,9 @@ class RequestingEntityYesNoForm(BaseYesNoForm): """Extend the initialization of the form from RegistrarForm __init__""" super().__init__(*args, **kwargs) if self.domain_request.portfolio: - choose_text = "(choose from list)" if self.domain_request.portfolio.portfolio_suborganizations.exists() else "" + choose_text = ( + "(choose from list)" if self.domain_request.portfolio.portfolio_suborganizations.exists() else "" + ) self.form_choices = ( (False, self.domain_request.portfolio), (True, f"A suborganization {choose_text}"),