OPENIDE fix python plugin

(cherry picked from commit 00201c181d)
This commit is contained in:
Nikita Iarychenko
2026-02-11 12:51:53 +04:00
parent 731729deb7
commit 9dfcb8cc49

View File

@@ -1,4 +1,7 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Modified by Nikita Iarychenko at 2026 as part of the OpenIDE project(https://openide.ru).
// Any modifications are available on the same license terms as the original source code.
package com.jetbrains.python.black.configuration
import com.intellij.openapi.options.ConfigurableProvider
@@ -8,7 +11,8 @@ import com.intellij.openapi.util.registry.Registry
class BlackFormatterConfigurableProvider(val project: Project) : ConfigurableProvider() {
override fun canCreateConfigurable(): Boolean {
return Registry.`is`("black.formatter.support.enabled")
return true
//return Registry.`is`("black.formatter.support.enabled")
}
override fun createConfigurable(): BlackFormatterConfigurable {