From cbfa706446bfd0b35c5ab36fc9ecbfac09935189 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milio=20Gonzalez?= Date: Mon, 2 Mar 2026 18:04:12 -0500 Subject: [PATCH] Console width is now 150 at a minimum --- ctf/__main__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ctf/__main__.py b/ctf/__main__.py index 78e6edd..c1b27ce 100644 --- a/ctf/__main__.py +++ b/ctf/__main__.py @@ -2,6 +2,7 @@ import logging import os +import rich import typer from typer import Typer from typing_extensions import Annotated @@ -59,6 +60,9 @@ def global_options( def main(): + # Set console width to 150 if it's smaller to avoid "…" in output + console = rich.get_console() + console.width = 150 if console.width < 150 else console.width app()