From dc7a4f438930e45928e4429e8520b7b6865f08e5 Mon Sep 17 00:00:00 2001 From: Jon Roberts Date: Mon, 27 Feb 2023 11:48:22 -0700 Subject: [PATCH] Linting --- src/registrar/tests/test_views.py | 4 +--- src/registrar/views/application.py | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/registrar/tests/test_views.py b/src/registrar/tests/test_views.py index 62155622b..e540e297d 100644 --- a/src/registrar/tests/test_views.py +++ b/src/registrar/tests/test_views.py @@ -401,9 +401,7 @@ class DomainApplicationTests(TestWithUser, WebTest): other_contacts_result = other_contacts_form.submit() self.assertEquals(other_contacts_result.status_code, 302) - self.assertEquals( - other_contacts_result["Location"], "/register/anything_else/" - ) + self.assertEquals(other_contacts_result["Location"], "/register/anything_else/") num_pages_tested += 1 # ---- ANYTHING ELSE PAGE ---- diff --git a/src/registrar/views/application.py b/src/registrar/views/application.py index 932d528b8..d5cef38c4 100644 --- a/src/registrar/views/application.py +++ b/src/registrar/views/application.py @@ -426,7 +426,6 @@ class OtherContacts(ApplicationWizard): forms = [forms.OtherContactsFormSet, forms.NoOtherContactsForm] - class AnythingElse(ApplicationWizard): template_name = "application_anything_else.html" forms = [forms.AnythingElseForm]