This commit is contained in:
+1
-1
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user