Skip to content

Commit 569676e

Browse files
committed
increase default term cols to 100
1 parent d24cc1d commit 569676e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

alive_progress/utils/terminal/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def get_term(file=None, force_tty=None, cols=None):
5656
if file is None:
5757
file = sys.stdout
5858

59-
base = tty.new(file, cols or 80)
59+
base = tty.new(file, cols or 100)
6060
if hasattr(file, 'isatty') and file.isatty() if force_tty is None else force_tty:
6161
return _create(jupyter.get_from(base) if _is_notebook() else base, True)
6262
return _create(non_tty.get_from(base), False)

0 commit comments

Comments
 (0)