college-bot-v1/utils/console.py
2023-03-22 16:37:20 +00:00

14 lines
220 B
Python

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