Skip to content

Commit 41cc56e

Browse files
pep8
1 parent 4559328 commit 41cc56e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bpython/curtsiesfrontend/repl.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1453,8 +1453,8 @@ def move_screen_up(current_line_start_row):
14531453
rows, columns,
14541454
[events.pp_event(x) for x in self.last_events if x],
14551455
self.config)
1456-
arr[arr.height-last_key_box.height:arr.height,
1457-
arr.width-last_key_box.width:arr.width] = last_key_box
1456+
arr[arr.height - last_key_box.height:arr.height,
1457+
arr.width - last_key_box.width:arr.width] = last_key_box
14581458

14591459
if self.config.color_scheme['background'] not in ('d', 'D'):
14601460
for r in range(arr.height):
@@ -1475,7 +1475,7 @@ def in_paste_mode(self):
14751475

14761476
def __repr__(self):
14771477
s = ''
1478-
s += '<'+repr(type(self))+'\n'
1478+
s += '<' + repr(type(self)) + '\n'
14791479
s += " cursor_offset:" + repr(self.cursor_offset) + '\n'
14801480
s += " num display lines:" + repr(len(self.display_lines)) + '\n'
14811481
s += " lines scrolled down:" + repr(self.scroll_offset) + '\n'

0 commit comments

Comments
 (0)