Skip to content

Commit c507b2d

Browse files
committed
pre commit
1 parent 76d4eb5 commit c507b2d

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

src/ansys/geometry/core/designer/design.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ def export_to_parasolid_bin(self, location: Path | str | None = None) -> Path:
533533
"""
534534
# Determine the extension based on the backend type
535535
ext = "x_b" if self._grpc_client.backend_type == BackendType.LINUX_SERVICE else "xmt_bin"
536-
536+
537537
# Define the file location
538538
file_location = self.__build_export_file_location(location, ext)
539539

tests/integration/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ def skip_if_windows(modeler: Modeler, test_name: str, element_not_available: str
6767
pytest.skip(
6868
reason=f"Skipping '{test_name}'. '{element_not_available}' not on Windows services."
6969
) # skip!
70-
70+
71+
7172
def skip_if_spaceclaim(modeler: Modeler, test_name: str, element_not_available: str):
7273
"""Skip test if running on SpaceClaim."""
7374
if modeler.client.backend_type == BackendType.SPACECLAIM:

tests/integration/test_design_export.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,7 @@
3030
from ansys.geometry.core.math import Plane, Point2D, Point3D, UnitVector3D, Vector3D
3131
from ansys.geometry.core.sketch import Sketch
3232

33-
from .conftest import (
34-
skip_if_linux,
35-
skip_if_windows,
36-
skip_if_spaceclaim)
33+
from .conftest import skip_if_linux, skip_if_spaceclaim, skip_if_windows
3734

3835

3936
def _create_demo_design(modeler: Modeler) -> Design:

0 commit comments

Comments
 (0)