Skip to content

Commit 9e9145c

Browse files
CHORE: Auto fixes from pre-commit hooks
1 parent 9ecf5ce commit 9e9145c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/ansys/aedt/core/application/analysis_3d.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ def import_3d_cad(
533533
reduce_percentage=0,
534534
reduce_error=0,
535535
merge_planar_faces=True,
536-
input_file_unit="Auto"
536+
input_file_unit="Auto",
537537
):
538538
"""Import a CAD model.
539539
@@ -598,7 +598,7 @@ def import_3d_cad(
598598
reduce_percentage=reduce_percentage,
599599
reduce_error=reduce_error,
600600
merge_planar_faces=merge_planar_faces,
601-
input_file_unit= input_file_unit
601+
input_file_unit=input_file_unit,
602602
)
603603

604604
@pyaedt_function_handler(

src/ansys/aedt/core/modeler/cad/primitives.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4911,7 +4911,7 @@ def import_3d_cad(
49114911
reduce_error=0,
49124912
merge_planar_faces=True,
49134913
merge_angle=0.02,
4914-
input_file_unit = "Auto"
4914+
input_file_unit="Auto",
49154915
):
49164916
"""Import a CAD model.
49174917
@@ -4952,6 +4952,7 @@ def import_3d_cad(
49524952
Stl import angle in radians for which faces will be considered planar. Default is ``2e-2``.
49534953
input_file_unit: str, optional
49544954
Uinit for the stl file.
4955+
49554956
Returns
49564957
-------
49574958
bool

0 commit comments

Comments
 (0)