From 59c23c11495d6f419b0e77936260a0216323124a Mon Sep 17 00:00:00 2001 From: nex Date: Tue, 5 Dec 2023 14:59:12 +0000 Subject: [PATCH] Revert console fixed width --- utils/console.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/console.py b/utils/console.py index 5e4c506..be581b1 100644 --- a/utils/console.py +++ b/utils/console.py @@ -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)