From 2f2dec715cce9160353ee40849794cf1f94835d0 Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Fri, 20 Sep 2024 11:48:37 -0600 Subject: [PATCH] linting --- src/registrar/forms/utility/wizard_form_helper.py | 1 - src/registrar/tests/test_views_request.py | 2 +- src/registrar/utility/enums.py | 3 +++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/registrar/forms/utility/wizard_form_helper.py b/src/registrar/forms/utility/wizard_form_helper.py index 578d6462d..45a493d30 100644 --- a/src/registrar/forms/utility/wizard_form_helper.py +++ b/src/registrar/forms/utility/wizard_form_helper.py @@ -290,4 +290,3 @@ def request_step_list(request_wizard): if condition: step_list.append(step) return step_list - diff --git a/src/registrar/tests/test_views_request.py b/src/registrar/tests/test_views_request.py index 71aeb3c1d..8530859e2 100644 --- a/src/registrar/tests/test_views_request.py +++ b/src/registrar/tests/test_views_request.py @@ -3061,4 +3061,4 @@ class TestPortfolioDomainRequestViewonly(TestWithUser, WebTest): self.assertContains(detail_page, "Requesting entity") self.assertNotContains(detail_page, "Type of organization") self.assertContains(detail_page, "city.gov") - self.assertContains(detail_page, "Status:") \ No newline at end of file + self.assertContains(detail_page, "Status:") diff --git a/src/registrar/utility/enums.py b/src/registrar/utility/enums.py index 21c03917c..b4fc5ed6f 100644 --- a/src/registrar/utility/enums.py +++ b/src/registrar/utility/enums.py @@ -3,6 +3,7 @@ from enum import Enum from registrar.utility import StrEnum + class ValidationReturnType(Enum): """Determines the return value of the validate_and_handle_errors class""" @@ -64,6 +65,7 @@ class Step(StrEnum): REQUIREMENTS = "requirements" REVIEW = "review" + class PortfolioDomainRequestStep(StrEnum): """ Names for each page of the portfolio domain request wizard. @@ -71,6 +73,7 @@ class PortfolioDomainRequestStep(StrEnum): As with Django's own `TextChoices` class, steps will appear in the order they are defined. (Order matters.) """ + # Portfolio REQUESTING_ENTITY = "organization_name" CURRENT_SITES = "current_sites"