We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39d25c8 commit 535c7b6Copy full SHA for 535c7b6
examples/10-mesh_operations/13-nodes_in_local_coordinate_system.py
@@ -42,6 +42,7 @@
42
# Import necessary modules
43
from ansys.dpf import core as dpf
44
from ansys.dpf.core import examples
45
+from ansys.dpf.gate.errors import DPFServerException
46
47
48
###############################################################################
@@ -59,7 +60,7 @@
59
60
# Starting with DPF 2025.1.pre1
61
cs = dpf.operators.result.coordinate_system()
62
cs.inputs.data_sources.connect(model)
-except (KeyError, ansys.dpf.gate.errors.DPFServerException) as e:
63
+except (KeyError, DPFServerException) as e:
64
# For previous DPF versions
65
cs = model.operator(r"mapdl::rst::CS")
66
0 commit comments