Skip to content

Commit d8a02d8

Browse files
authored
Update dump.py
1 parent 3b2f47f commit d8a02d8

File tree

1 file changed

+1
-1
lines changed
  • system/diagnostic_graph_aggregator/script

1 file changed

+1
-1
lines changed

system/diagnostic_graph_aggregator/script/dump.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def print_table(lines: list, header: list):
3131
lines.insert(0, ["-" * w for w in widths])
3232
lines.insert(2, ["-" * w for w in widths])
3333
for line in lines:
34-
line = map(lambda v, w: f"{v:{w}}", line, widths)
34+
line = map(lambda v, w: f"{v: {w}}", line, widths)
3535
line = " | ".join(line)
3636
print(f"| {line} |")
3737

0 commit comments

Comments
 (0)