[scripts/pyprint] fix typo in list generation

This commit is contained in:
Mike Fährmann
2025-07-28 21:45:14 +02:00
parent 876df379f4
commit 1f08f81e67

View File

@@ -74,7 +74,7 @@ def pyprint(obj, indent=0, lmax=16):
ws = " " * indent
lines = ["{"]
lines = ["["]
lines.extend(
f'''{ws} {pyprint(value, indent+4)},'''
for value in obj