diff --git a/system/diagnostic_graph_aggregator/script/dump.py b/system/diagnostic_graph_aggregator/script/dump.py index 9abcaeb7a080c..a647b2677b160 100755 --- a/system/diagnostic_graph_aggregator/script/dump.py +++ b/system/diagnostic_graph_aggregator/script/dump.py @@ -31,7 +31,7 @@ def print_table(lines: list, header: list): lines.insert(0, ["-" * w for w in widths]) lines.insert(2, ["-" * w for w in widths]) for line in lines: - line = map(lambda v, w: f"{v:{w}}", line, widths) + line = map(lambda v, w: f"{v: {w}}", line, widths) line = " | ".join(line) print(f"| {line} |")