From f5615b284ffaaf3bebcf4166f232a207117dfc8a Mon Sep 17 00:00:00 2001 From: Johanna England Date: Wed, 4 Dec 2024 13:00:00 +0100 Subject: [PATCH] Remove f-string without any placeholders --- src/argus/htmx/incidents/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/argus/htmx/incidents/utils.py b/src/argus/htmx/incidents/utils.py index d6d012ae8..9f3d02f22 100644 --- a/src/argus/htmx/incidents/utils.py +++ b/src/argus/htmx/incidents/utils.py @@ -38,4 +38,4 @@ def get_filter_function(arg=None): return function raise ImportError(f"Could not import {FUNCTION_NAME_DEFAULT} from {arg}") - raise TypeError(f"ARGUS_HTMX_FILTER_FUNCTION must be a callable or string") + raise TypeError("ARGUS_HTMX_FILTER_FUNCTION must be a callable or string")