We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d80dd61 commit 41f9795Copy full SHA for 41f9795
1 file changed
src/firefetch/cli.py
@@ -417,9 +417,7 @@ def main(argv: list[str] | None = None) -> int:
417
format="%(asctime)s %(name)s %(levelname)s %(message)s",
418
)
419
_http.configure(proxy=args.proxy, insecure=args.insecure)
420
- # Cap render width on wide terminals — wider than ~120 just creates
421
- # a desert of trailing whitespace.
422
- console = Console(width=min(Console().width, 120))
+ console = Console()
423
424
if args.mode == "apk":
425
apk_path = _resolve_apk_target(args.target, args, console)
0 commit comments