From 10d885dfd10c42a41a47f3d50a709447b56d91d3 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 22 Aug 2024 06:40:06 -0700 Subject: [PATCH] style: Apply linter formatting to testsr.py --- testsr.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/testsr.py b/testsr.py index 7929d965d..61e28bd12 100644 --- a/testsr.py +++ b/testsr.py @@ -44,10 +44,7 @@ def process_markdown(filename): results.append(section_result) except ValueError as e: # If an error occurs, add it to the results for this section - results.append({ - "header": header, - "error": str(e) - }) + results.append({"header": header, "error": str(e)}) # Output the results as JSON print(json.dumps(results, indent=4))