Revert console fixed width

This commit is contained in:
Nexus 2023-12-05 14:59:12 +00:00
parent 86aad4a80e
commit 59c23c1149
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -4,8 +4,8 @@ from rich.console import Console
_col, _ = shutil.get_terminal_size((80, 20))
if _col == 80:
_col = 200
_col = 160
__all__ = ("console",)
console = Console(width=_col, soft_wrap=True, tab_size=4)
console = Console(width=_col, soft_wrap=False, tab_size=4)