mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
Remove forgotten debug/print in filename completion. (#1380)
This is in the latest 0.15, and when forwarding path completions to jedi, print a lot of stuff on the screen.
This commit is contained in:
committed by
Dave Halter
parent
5d0d09bb7d
commit
ecca190462
@@ -47,7 +47,6 @@ def file_name_completions(evaluator, module_context, start_leaf, string,
|
|||||||
potential_other_quote = \
|
potential_other_quote = \
|
||||||
code_lines[position[0] - 1][position[1]:position[1] + len(quote)]
|
code_lines[position[0] - 1][position[1]:position[1] + len(quote)]
|
||||||
# Add a quote if it's not already there.
|
# Add a quote if it's not already there.
|
||||||
print(repr(quote), repr(potential_other_quote), position)
|
|
||||||
if quote != potential_other_quote:
|
if quote != potential_other_quote:
|
||||||
name += quote
|
name += quote
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user