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 ad65967 commit b522be4Copy full SHA for b522be4
bpython/curtsiesfrontend/repl.py
@@ -1576,7 +1576,10 @@ def move_screen_up(current_line_start_row):
1576
+ wcswidth(self.stdin.current_line, self.stdin.cursor_offset),
1577
width,
1578
)
1579
- assert cursor_row >= 0 and cursor_column >= 0, (cursor_row, cursor_column)
+ assert cursor_row >= 0 and cursor_column >= 0, (
1580
+ cursor_row,
1581
+ cursor_column,
1582
+ )
1583
elif self.coderunner.running: # TODO does this ever happen?
1584
cursor_row, cursor_column = divmod(
1585
(
0 commit comments