Skip to content

Commit

Permalink
fix: pre-commit.ci error (#1282)
Browse files Browse the repository at this point in the history
fix: pre-commit ci error
  • Loading branch information
shmpwk authored May 2, 2024
1 parent 225f8e8 commit a24968c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/diagnostic_graph_aggregator/script/dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -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} |")

Expand Down

0 comments on commit a24968c

Please sign in to comment.