Skip to content

Commit e470176

Browse files
removed erroneous print()
1 parent 5bfd09c commit e470176

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

bpython/line.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ def current_dict(cursor_offset: int, line: str) -> Optional[LinePart]:
8787
"""If in dictionary completion, return the dict that should be used"""
8888
for m in _current_dict_re.finditer(line):
8989
if m.start(2) <= cursor_offset <= m.end(2):
90-
print(LinePart(m.start(1), m.end(1), m.group(1))) # TODO
9190
return LinePart(m.start(1), m.end(1), m.group(1))
9291
return None
9392

0 commit comments

Comments
 (0)