Skip to content

Commit acc75aa

Browse files
timsavagejonathanslenders
authored andcommitted
Fixed variable from self to repl
The config entries for "Fuzzy and dictionary completion" was using self instead of repl.
1 parent 74f7623 commit acc75aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/ptpython_config/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ def configure(repl):
6262
repl.complete_while_typing = True
6363

6464
# Fuzzy and dictionary completion.
65-
self.enable_fuzzy_completion = False
66-
self.enable_dictionary_completion = False
65+
repl.enable_fuzzy_completion = False
66+
repl.enable_dictionary_completion = False
6767

6868
# Vi mode.
6969
repl.vi_mode = False

0 commit comments

Comments
 (0)