Skip to content

Commit 9ec89db

Browse files
committed
Fix call of update
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent 99dcc9d commit 9ec89db

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
@@ -1029,7 +1029,7 @@ def update_completion(self, tab=False):
10291029
# or disappear; whenever current line or cursor offset changes,
10301030
# unless this happened via selecting a match
10311031
self.current_match = None
1032-
self.list_win_visible = BpythonRepl.complete(self, tab)
1032+
self.list_win_visible = self.complete(tab)
10331033

10341034
def predicted_indent(self, line):
10351035
# TODO get rid of this! It's repeated code! Combine with Repl.

0 commit comments

Comments
 (0)