mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-24 14:25:00 +00:00
style: Apply linter formatting to testsr.py
This commit is contained in:
parent
b32fa29ba4
commit
10d885dfd1
1 changed files with 1 additions and 4 deletions
|
@ -44,10 +44,7 @@ def process_markdown(filename):
|
||||||
results.append(section_result)
|
results.append(section_result)
|
||||||
except ValueError as e:
|
except ValueError as e:
|
||||||
# If an error occurs, add it to the results for this section
|
# If an error occurs, add it to the results for this section
|
||||||
results.append({
|
results.append({"header": header, "error": str(e)})
|
||||||
"header": header,
|
|
||||||
"error": str(e)
|
|
||||||
})
|
|
||||||
|
|
||||||
# Output the results as JSON
|
# Output the results as JSON
|
||||||
print(json.dumps(results, indent=4))
|
print(json.dumps(results, indent=4))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue