Add type ignore

Overzealous linter
This commit is contained in:
zandercymatics 2024-04-22 10:08:16 -06:00
parent e581d3b2ca
commit c9f511e397
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -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"