Skip to content

Commit 0ac6f13

Browse files
committed
Use super
1 parent 0acf268 commit 0ac6f13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/curtsiesfrontend/repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1833,7 +1833,7 @@ def prompt_undo(self):
18331833
return self.take_back_empty_line()
18341834

18351835
def prompt_for_undo():
1836-
n = BpythonRepl.prompt_undo(self)
1836+
n = super(BaseRepl, self).prompt_undo()
18371837
if n > 0:
18381838
self.request_undo(n=n)
18391839

0 commit comments

Comments
 (0)