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 23d6b10 commit 545f482Copy full SHA for 545f482
src/ansys/geometry/core/connection/product_instance.py
@@ -474,7 +474,10 @@ def prepare_and_start_backend(
474
475
# At least dotnet 8.0 is required
476
# private method and controlled input by library - excluding bandit check.
477
- if subprocess.check_output(["dotnet", "--version"]).decode("utf-8").split(".")[0] < "8": # nosec B607, B603
+ if (
478
+ subprocess.check_output(["dotnet", "--version"]).decode("utf-8").split(".")[0]
479
+ < "8"
480
+ ): # nosec B607, B603
481
raise RuntimeError(
482
"Ansys Geometry Core Service requires at least dotnet 8.0. "
483
"Please install a compatible version."
0 commit comments