Unverified Commit b485db76 by Marcin Bury Committed by GitHub

Fix printer (#818)

parent 3e715cc6
...@@ -134,7 +134,7 @@ def print_table(headers, *args, **kwargs) -> None: ...@@ -134,7 +134,7 @@ def print_table(headers, *args, **kwargs) -> None:
for idx, element in enumerate(arg): for idx, element in enumerate(arg):
content_line = "".join(( content_line = "".join((
content_line, content_line,
"{:<{}}".format(element, fill[idx]) "{:<{}}".format(str(element), fill[idx])
)) ))
print_info(content_line) print_info(content_line)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment