style: Apply linter formatting to testsr.py

This commit is contained in:
Paul Gauthier (aider) 2024-08-22 06:40:06 -07:00
parent b32fa29ba4
commit 10d885dfd1

View file

@ -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))