[python] unify Local SDK creation UI in PyCharm and IDEA (PY-79881)

* use the same UI in IDEA for local SDKS as currently PyCharm has, removing redundant code


Merge-request: IJ-MR-164681
Merged-by: Vitaly Legchilkin <Vitaly.Legchilkin@jetbrains.com>

GitOrigin-RevId: fe26897837f41dd2f3b23a328d2a9098ad388e37
This commit is contained in:
Vitaly Legchilkin
2025-06-06 22:08:02 +00:00
committed by intellij-monorepo-bot
parent f3380e827e
commit 06b7a98504
58 changed files with 1150 additions and 2114 deletions

View File

@@ -20,6 +20,6 @@ internal class PythonNewProjectWizard : LanguageGeneratorNewProjectWizard {
override val ordinal = 600
override fun createStep(parent: NewProjectWizardStep): NewProjectWizardStep = NewPythonProjectStep(parent)
override fun createStep(parent: NewProjectWizardStep): NewProjectWizardStep = NewPythonProjectStep(parent, createPythonModuleStructure = true)
}