We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b2f47f commit d8a02d8Copy full SHA for d8a02d8
system/diagnostic_graph_aggregator/script/dump.py
@@ -31,7 +31,7 @@ def print_table(lines: list, header: list):
31
lines.insert(0, ["-" * w for w in widths])
32
lines.insert(2, ["-" * w for w in widths])
33
for line in lines:
34
- line = map(lambda v, w: f"{v:{w}}", line, widths)
+ line = map(lambda v, w: f"{v: {w}}", line, widths)
35
line = " | ".join(line)
36
print(f"| {line} |")
37
0 commit comments