From 644ca4638ad75e7f6ef7e38f694d2a6ffda60c3b Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Tue, 16 Apr 2024 11:56:58 -0600 Subject: [PATCH] Overzealous linter --- src/registrar/forms/domain_request_wizard.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/registrar/forms/domain_request_wizard.py b/src/registrar/forms/domain_request_wizard.py index 4e2c8425d..789d4498a 100644 --- a/src/registrar/forms/domain_request_wizard.py +++ b/src/registrar/forms/domain_request_wizard.py @@ -662,7 +662,7 @@ class CisaRepresentativeYesNoForm(BaseYesNoForm): """Yes/no toggle for the CISA regions question on additional details""" # Note that these can be set as functions/init if you need more fine-grained control - form_is_checked = property(lambda self: self.domain_request.has_cisa_representative()) + form_is_checked = property(lambda self: self.domain_request.has_cisa_representative()) # type: ignore field_name = "has_cisa_representative" @@ -683,8 +683,8 @@ class AdditionalDetailsForm(BaseDeletableRegistrarForm): class AdditionalDetailsYesNoForm(BaseYesNoForm): """Yes/no toggle for the anything else question on additional details""" - # Note that these can be set as functions/init if you need more fine-grained control - form_is_checked = property(lambda self: self.domain_request.has_anything_else_text()) + # Note that these can be set as functions/init if you need more fine-grained control. + form_is_checked = property(lambda self: self.domain_request.has_anything_else_text()) # type: ignore field_name = "has_anything_else_text"