[python, ds] remove python.remoteInterpreter -> intellij.python (prof) dependency.

DS doesn't have prof, but should support SSH and WSL

GitOrigin-RevId: 3c0759d64bdd8ce41e939864659177f9ff6cec12
This commit is contained in:
Ilya.Kazakevich
2024-01-18 04:10:20 +01:00
committed by intellij-monorepo-bot
parent 05bcab09f1
commit 743936d654
2 changed files with 40 additions and 1 deletions

View File

@@ -348,7 +348,7 @@ public abstract class PySkeletonGenerator {
}
}
protected static void sendLineToProcessInput(@NotNull BaseProcessHandler<?> handler, @NotNull String line) throws ExecutionException {
public static void sendLineToProcessInput(@NotNull BaseProcessHandler<?> handler, @NotNull String line) throws ExecutionException {
final OutputStream input = handler.getProcessInput();
try {
sendLineToStream(input, line);