From 7eae2873209bca0920d994791f1c56aa8b93a423 Mon Sep 17 00:00:00 2001 From: "andrey.matveev" Date: Thu, 19 Dec 2019 16:23:48 +0300 Subject: [PATCH] PY-39742 Disable ml completion by default GitOrigin-RevId: 44aca73bec4e39f7a10df085a86a4d2f20671b8a --- .../python/codeInsight/mlcompletion/PythonMLRankingProvider.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/com/jetbrains/python/codeInsight/mlcompletion/PythonMLRankingProvider.kt b/python/src/com/jetbrains/python/codeInsight/mlcompletion/PythonMLRankingProvider.kt index ab613b19baa1..a847ae7a6862 100644 --- a/python/src/com/jetbrains/python/codeInsight/mlcompletion/PythonMLRankingProvider.kt +++ b/python/src/com/jetbrains/python/codeInsight/mlcompletion/PythonMLRankingProvider.kt @@ -17,5 +17,5 @@ class PythonMLRankingProvider : JarCompletionModelProvider("Python", "python_fea override fun isLanguageSupported(language: Language): Boolean = language.id.compareTo("python", ignoreCase = true) == 0 - override fun isEnabledByDefault() = true + override fun isEnabledByDefault() = false } \ No newline at end of file