From f61d041830c34c27ceb20f81a1b9e75acb7fde87 Mon Sep 17 00:00:00 2001 From: Johannes Maria Frank Date: Tue, 22 Oct 2019 16:06:46 +0100 Subject: [PATCH] Switched back to fuzzy off as default --- jedi/api/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi/api/__init__.py b/jedi/api/__init__.py index 4ab5c19c..0e505c9f 100644 --- a/jedi/api/__init__.py +++ b/jedi/api/__init__.py @@ -201,7 +201,7 @@ class Script(object): self._inference_state.environment, ) - def completions(self, fuzzy=True): + def completions(self, fuzzy=False): """ Return :class:`classes.Completion` objects. Those objects contain information about the completions, more than just names.