Skip to content

Commit aa2ee11

Browse files
committed
fix: wrong callers
1 parent 789cfe5 commit aa2ee11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ansys/mapdl/core/cli/stop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def stop(port: int, pid: Optional[int], all: bool) -> None:
6868
"""
6969
import psutil
7070

71-
from ansys.mapdl.core.launcher import is_ansys_process
71+
from ansys.mapdl.core.launcher.tools import is_ansys_process
7272

7373
PROCESS_OK_STATUS = [
7474
# List of all process status, comment out the ones that means that

src/ansys/mapdl/core/mapdl_grpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ def _launch(self, start_parm, timeout=10):
889889
raise MapdlRuntimeError(
890890
"Can only launch the GUI with a local instance of MAPDL"
891891
)
892-
from ansys.mapdl.core.launcher import launch_grpc
892+
from ansys.mapdl.core.launcher.grpc import launch_grpc
893893
from ansys.mapdl.core.launcher.tools import generate_mapdl_launch_command
894894

895895
self._exited = False # reset exit state

0 commit comments

Comments
 (0)