From 9b2b26a3e07c3fe600b98aea4b737bd4816a1f3c Mon Sep 17 00:00:00 2001 From: CocoByte Date: Wed, 18 Sep 2024 23:08:39 -0600 Subject: [PATCH] linted --- src/registrar/context_processors.py | 4 +--- src/registrar/tests/test_views_portfolio.py | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/registrar/context_processors.py b/src/registrar/context_processors.py index 53a0d63d8..37834067b 100644 --- a/src/registrar/context_processors.py +++ b/src/registrar/context_processors.py @@ -103,6 +103,4 @@ def portfolio_permissions(request): def is_widescreen_mode(request): widescreen_paths = ["/domains/", "/requests/"] - return { - "is_widescreen_mode": any(path in request.path for path in widescreen_paths) or request.path == "/" - } + return {"is_widescreen_mode": any(path in request.path for path in widescreen_paths) or request.path == "/"} diff --git a/src/registrar/tests/test_views_portfolio.py b/src/registrar/tests/test_views_portfolio.py index 48d39b374..68c95005e 100644 --- a/src/registrar/tests/test_views_portfolio.py +++ b/src/registrar/tests/test_views_portfolio.py @@ -564,7 +564,6 @@ class TestPortfolio(WebTest): """Tests if class modifiers for widescreen mode are appropriately loaded into the DOM for org model pages""" self.check_widescreen_is_loaded("domains") - @less_console_noise_decorator @override_flag("organization_feature", active=False)