From ecca190462d447d94224c609970dd0b9909ae8c6 Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Mon, 12 Aug 2019 03:37:21 -0700 Subject: [PATCH] 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. --- jedi/api/file_name.py | 1 - 1 file changed, 1 deletion(-) diff --git a/jedi/api/file_name.py b/jedi/api/file_name.py index d6ecb708..2a2c4e60 100644 --- a/jedi/api/file_name.py +++ b/jedi/api/file_name.py @@ -47,7 +47,6 @@ def file_name_completions(evaluator, module_context, start_leaf, string, potential_other_quote = \ code_lines[position[0] - 1][position[1]:position[1] + len(quote)] # Add a quote if it's not already there. - print(repr(quote), repr(potential_other_quote), position) if quote != potential_other_quote: name += quote else: