We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8db5618 commit 46e57a8Copy full SHA for 46e57a8
test/system-test-runner.py
@@ -42,7 +42,11 @@
42
from typing import Optional, List, Tuple
43
from dataclasses import dataclass
44
45
-TERMINAL_COLUMNS: int = os.get_terminal_size().columns
+TERMINAL_COLUMNS: int = 60
46
+try:
47
+ TERMINAL_COLUMNS: int = os.get_terminal_size().columns
48
+except:
49
+ pass
50
51
def str_to_bool(value: str) -> str:
52
"""Convert true/false string to 1/0 string for internal compatibility."""
0 commit comments