Update json_to_md.py
Run Pytest with HTML and XML Test Reports / tests (push) Successful in 27s

This commit is contained in:
2025-07-17 16:00:57 +02:00
parent 3b4fdb8b82
commit ca2b27af59
+1 -1
View File
@@ -17,7 +17,7 @@ def stringify(obj, indent=0):
if isinstance(obj, list):
if not obj:
return "[]"
return '\n'.join(f"{space}'\n' {stringify(e, indent + 1)}" for e in obj)
return '\n'.join(f" \n {stringify(e, indent + 1)}" for e in obj)
if isinstance(obj, dict):
if not obj: