Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ctf/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import logging
import os

import rich
import typer
from typer import Typer
from typing_extensions import Annotated
Expand Down Expand Up @@ -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()


Expand Down