We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bfd09c commit e470176Copy full SHA for e470176
bpython/line.py
@@ -87,7 +87,6 @@ def current_dict(cursor_offset: int, line: str) -> Optional[LinePart]:
87
"""If in dictionary completion, return the dict that should be used"""
88
for m in _current_dict_re.finditer(line):
89
if m.start(2) <= cursor_offset <= m.end(2):
90
- print(LinePart(m.start(1), m.end(1), m.group(1))) # TODO
91
return LinePart(m.start(1), m.end(1), m.group(1))
92
return None
93
0 commit comments