From d7239a35eb951ad609428fc02a9f667afdc37a27 Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Fri, 10 Jan 2025 16:09:53 +0100 Subject: [PATCH] fix: missing import --- src/ansys/mapdl/core/mapdl_grpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansys/mapdl/core/mapdl_grpc.py b/src/ansys/mapdl/core/mapdl_grpc.py index f9d0c8de5e..683d1deca3 100644 --- a/src/ansys/mapdl/core/mapdl_grpc.py +++ b/src/ansys/mapdl/core/mapdl_grpc.py @@ -651,7 +651,7 @@ def _post_mortem_checks(self): def _read_stds(self): """Read the stdout and stderr from the subprocess.""" - from ansys.mapdl.core.launcher import ( + from ansys.mapdl.core.launcher.tools import ( _get_std_output, # Avoid circular import error )