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 9e18458 commit 5151914Copy full SHA for 5151914
src/ansys/dpf/core/custom_operator.py
@@ -125,7 +125,7 @@ def update_virtual_environment_for_custom_operators(
125
if path_file.exists():
126
# Treat editable installation of ansys-dpf-core
127
with path_file.open("r") as f:
128
- current_site_packages_path = f.readline().strip()
+ current_site_packages_path = Path(f.readline().strip())
129
with tempfile.TemporaryDirectory() as tmpdir:
130
tmpdir = Path(tmpdir)
131
ansys_dir = tmpdir / "ansys_dpf_core"
0 commit comments