[python] move some stuff from openapi

GitOrigin-RevId: bc0a26fd9436a26c7e4b2be1cb0210b7179bf3bb
This commit is contained in:
Vladimir Koshelev
2023-09-21 14:46:48 +02:00
committed by intellij-monorepo-bot
parent fb42532979
commit 7dc8c853c5
6 changed files with 4 additions and 1 deletions

View File

@@ -16,6 +16,7 @@
package com.jetbrains.python.run;
import com.intellij.openapi.module.Module;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
@@ -24,4 +25,6 @@ import org.jetbrains.annotations.Nullable;
public interface AbstractPythonRunConfigurationParams extends PythonRunParams {
@Nullable
Module getModule();
void copyEnvFiles(@NotNull AbstractPythonRunConfigurationParams configurationParams);
}

View File

@@ -1,4 +1,4 @@
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.jetbrains.python.run;
import com.intellij.openapi.module.Module;