mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 20:14:13 +00:00
fix: auto-detect Console width
Signed-off-by: Doug Edgar <dedgar@redhat.com>
This commit is contained in:
parent
02f6e0f531
commit
93e9dfdc7d
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ def strip_rich_markup(text):
|
|||
|
||||
class CustomRichHandler(RichHandler):
|
||||
def __init__(self, *args, **kwargs):
|
||||
kwargs["console"] = Console(width=150)
|
||||
kwargs["console"] = Console()
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
def emit(self, record):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue