From 4144a0a91e8f22624ea7fe5ecbf8d069c7d7cfc6 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Wed, 27 Aug 2025 17:19:49 +0200 Subject: [PATCH] Update json_to_md.py --- json_to_md.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/json_to_md.py b/json_to_md.py index 977a330..d05f7e0 100644 --- a/json_to_md.py +++ b/json_to_md.py @@ -70,11 +70,7 @@ def make_test_block(test, status, emoji, level, runtime_params): summary = f"{emoji} Test {test['global_number']}" if params: param_display = ", ".join( - f"" - f"{html.escape(str(k))}={html.escape(sanitize_param_value(v))}" - "" + f"{html.escape(str(k))}={html.escape(sanitize_param_value(v))}" for k, v in params.items() )