From 1b034ba04b8a67598dc994822c7f82e7852552c3 Mon Sep 17 00:00:00 2001 From: Erin Song <121973038+erinysong@users.noreply.github.com> Date: Thu, 21 Nov 2024 11:27:43 -0800 Subject: [PATCH] Run linter --- src/registrar/forms/domain_request_wizard.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/registrar/forms/domain_request_wizard.py b/src/registrar/forms/domain_request_wizard.py index 5e156cc73..28044b0ec 100644 --- a/src/registrar/forms/domain_request_wizard.py +++ b/src/registrar/forms/domain_request_wizard.py @@ -524,9 +524,11 @@ class DotGovDomainForm(RegistrarForm): class PurposeForm(RegistrarForm): purpose = forms.CharField( label="Purpose", - widget=forms.Textarea(attrs={ - 'aria-label': 'What is the purpose of your requested domain? Describe how you’ll use your .gov domain. Will it be used for a website, email, or something else? You can enter up to 2000 characters.' - }), + widget=forms.Textarea( + attrs={ + "aria-label": "What is the purpose of your requested domain? Describe how you’ll use your .gov domain. Will it be used for a website, email, or something else? You can enter up to 2000 characters." + } + ), validators=[ MaxLengthValidator( 2000,