diff --git a/python/BUILD.bazel b/python/BUILD.bazel
index b0f728700aa9..b54945a35c07 100644
--- a/python/BUILD.bazel
+++ b/python/BUILD.bazel
@@ -259,8 +259,6 @@ jvm_library(
"//python/python-syntax:syntax",
"//platform/ui.jcef",
"//libraries/io",
- "//libraries/ktor-client",
- "//libraries/ktor-client-cio",
"//platform/util/progress",
"//platform/feedback",
"@lib//:kotlinx-datetime-jvm",
diff --git a/python/intellij.python.community.impl.iml b/python/intellij.python.community.impl.iml
index 6434f4975e7d..06db1907e1bf 100644
--- a/python/intellij.python.community.impl.iml
+++ b/python/intellij.python.community.impl.iml
@@ -157,8 +157,6 @@
-
-
diff --git a/python/pluginCore/resources/META-INF/plugin.xml b/python/pluginCore/resources/META-INF/plugin.xml
index 829ea8da6c0b..0b7ee221d5f4 100644
--- a/python/pluginCore/resources/META-INF/plugin.xml
+++ b/python/pluginCore/resources/META-INF/plugin.xml
@@ -26,8 +26,7 @@ The Python plug-in provides smart editing for Python scripts. The feature set of
-
-
+
diff --git a/python/src/com/jetbrains/python/sdk/add/PyAddSdkDialog.kt b/python/src/com/jetbrains/python/sdk/add/PyAddSdkDialog.kt
index 6af43876e2b6..724d045e190e 100644
--- a/python/src/com/jetbrains/python/sdk/add/PyAddSdkDialog.kt
+++ b/python/src/com/jetbrains/python/sdk/add/PyAddSdkDialog.kt
@@ -26,7 +26,6 @@ import com.jetbrains.python.PyBundle
import com.jetbrains.python.packaging.PyExecutionException
import com.jetbrains.python.sdk.add.PyAddSdkDialog.Companion.show
import com.jetbrains.python.showErrorDialog
-import io.ktor.utils.io.CancellationException
import java.awt.CardLayout
import java.awt.event.ActionEvent
import java.io.IOException
@@ -243,9 +242,6 @@ class PyAddSdkDialog private constructor(
try {
selectedPanel?.complete()
}
- catch (e: CancellationException) {
- throw e
- }
catch (e: IOException) {
Messages.showErrorDialog(e.localizedMessage, CommonBundle.message("title.error"))
return