Skip to content

Commit

Permalink
Format update
Browse files Browse the repository at this point in the history
  • Loading branch information
ansys-pwalters committed Jan 11, 2024
1 parent 727d218 commit a38313f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ansys/sherlock/core/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def import_odb_archive(
cca_name=None,
polyline_simplification=False,
polyline_tolerance=0.1,
polyline_tolerance_units="mm"
polyline_tolerance_units="mm",
):
"""Import an ODB++ archive file.
Expand Down Expand Up @@ -162,7 +162,7 @@ def import_odb_archive(
ccaName=cca_name,
polylineSimplification=polyline_simplification,
polylineTolerance=polyline_tolerance,
polylineToleranceUnits=polyline_tolerance_units
polylineToleranceUnits=polyline_tolerance_units,
)

response = self.stub.importODBArchive(request)
Expand All @@ -186,7 +186,7 @@ def import_ipc2581_archive(
cca_name=None,
polyline_simplification=False,
polyline_tolerance=0.1,
polyline_tolerance_units="mm"
polyline_tolerance_units="mm",
):
"""Import an IPC-2581 archive file.
Expand Down Expand Up @@ -248,7 +248,7 @@ def import_ipc2581_archive(
ccaName=cca_name,
polylineSimplification=polyline_simplification,
polylineTolerance=polyline_tolerance,
polylineToleranceUnits=polyline_tolerance_units
polylineToleranceUnits=polyline_tolerance_units,
)

response = self.stub.importIPC2581Archive(request)
Expand Down

0 comments on commit a38313f

Please sign in to comment.