Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Add no_wrap=False
Browse files Browse the repository at this point in the history
  • Loading branch information
Saverio976 committed Apr 29, 2022
1 parent f638dda commit 054997d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion normatrix/normatrix/source/print_right_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def print_right_format_rich(context: Context, filepath: str, nb_total_err: int,
if nb_total_err == 0:
return
table = Table(title=f"[bold magenta]{filepath} [{nb_total_err} error.s]", expand=True)
table.add_column("Lines", style="cyan", no_wrap=True)
table.add_column("Lines", style="cyan", no_wrap=False)
table.add_column("Error Message", style="red", no_wrap=True)
dico = dict()
for err_line, err_msg in list_error:
Expand Down

0 comments on commit 054997d

Please sign in to comment.