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 99701b9 commit dbd3838Copy full SHA for dbd3838
interpreter_1/ui/tool.py
@@ -633,9 +633,9 @@ class SchemaRenderer:
633
@staticmethod
634
def print_separator(char="─", newline=True, line=True):
635
try:
636
- self.terminal_width = os.get_terminal_size().columns
+ terminal_width = os.get_terminal_size().columns
637
except:
638
- self.terminal_width = int(os.environ.get("TERMINAL_WIDTH", "50"))
+ terminal_width = int(os.environ.get("TERMINAL_WIDTH", "50"))
639
if newline:
640
sys.stdout.write("\n")
641
if line:
0 commit comments