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 0a305b0 commit 4bc2713Copy full SHA for 4bc2713
src/ansys/dpf/core/common.py
@@ -28,11 +28,16 @@
28
from typing import Dict
29
30
from ansys.dpf.core.misc import module_exists
31
-from ansys.dpf.gate.common import ProgressBarBase, locations # noqa: F401
+from ansys.dpf.gate.common import (
32
+ ProgressBarBase, # noqa: F401
33
+ locations as locations_gate,
34
+)
35
from ansys.dpf.gate.dpf_vector import ( # noqa: F401
36
get_size_of_list as _get_size_of_list,
37
)
38
39
+locations = locations_gate
40
+
41
42
def _camel_to_snake_case(name):
43
return re.sub(r"(?<!^)(?=[A-Z])", "_", name).lower()
0 commit comments