From b7a29897dd015466325c265b1545901d1293ed24 Mon Sep 17 00:00:00 2001 From: MerlinScheurer Date: Sat, 5 Apr 2025 13:28:24 +0200 Subject: [PATCH] Fix formatting of backend\common\src\helper.py --- backend/common/src/helper.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/backend/common/src/helper.py b/backend/common/src/helper.py index d2ec8538..263018db 100644 --- a/backend/common/src/helper.py +++ b/backend/common/src/helper.py @@ -231,7 +231,13 @@ def ta_host_parser(ta_host: str) -> tuple[list[str], list[str]]: def get_stylesheets() -> list: """Get all valid stylesheets from /static/css""" - stylesheets = ["dark.css", "light.css", "matrix.css", "midnight.css", "custom.css"] + stylesheets = [ + "dark.css", + "light.css", + "matrix.css", + "midnight.css", + "custom.css", + ] return stylesheets