Skip to content

Commit b522be4

Browse files
committed
Apply black
1 parent ad65967 commit b522be4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

bpython/curtsiesfrontend/repl.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1576,7 +1576,10 @@ def move_screen_up(current_line_start_row):
15761576
+ wcswidth(self.stdin.current_line, self.stdin.cursor_offset),
15771577
width,
15781578
)
1579-
assert cursor_row >= 0 and cursor_column >= 0, (cursor_row, cursor_column)
1579+
assert cursor_row >= 0 and cursor_column >= 0, (
1580+
cursor_row,
1581+
cursor_column,
1582+
)
15801583
elif self.coderunner.running: # TODO does this ever happen?
15811584
cursor_row, cursor_column = divmod(
15821585
(

0 commit comments

Comments
 (0)