From c9f511e39713eed59294a70e5fa8dd18c27f4b2a Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Mon, 22 Apr 2024 10:08:16 -0600 Subject: [PATCH] Add type ignore Overzealous linter --- src/registrar/forms/domain_request_wizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/registrar/forms/domain_request_wizard.py b/src/registrar/forms/domain_request_wizard.py index 752ad7f35..8d74f6f35 100644 --- a/src/registrar/forms/domain_request_wizard.py +++ b/src/registrar/forms/domain_request_wizard.py @@ -664,7 +664,7 @@ class CisaRepresentativeForm(BaseDeletableRegistrarForm): class CisaRepresentativeYesNoForm(BaseYesNoForm): """Yes/no toggle for the CISA regions question on additional details""" - 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"