From 40d6423bb6b3ca7eb034d53952ae94592ff9a475 Mon Sep 17 00:00:00 2001 From: CocoByte Date: Thu, 5 Sep 2024 21:46:38 -0600 Subject: [PATCH] linted --- src/registrar/context_processors.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/registrar/context_processors.py b/src/registrar/context_processors.py index 5c2fb6a54..3ad010f89 100644 --- a/src/registrar/context_processors.py +++ b/src/registrar/context_processors.py @@ -96,6 +96,9 @@ def portfolio_permissions(request): "has_organization_feature_flag": False, } + def is_widescreen_mode(request): widescreen_paths = ["/domains/", "/requests/"] - return {"is_widescreen_mode": any(path in request.path for path in widescreen_paths)} #any(path in request.path for path in widescreen_paths) \ No newline at end of file + return { + "is_widescreen_mode": any(path in request.path for path in widescreen_paths) + } # any(path in request.path for path in widescreen_paths)