Skip to content

Commit

Permalink
remove keyword arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Apr 23, 2024
1 parent 608bad8 commit 2766a99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compas_occ/brep/brep.py
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,7 @@ def simplify(self, merge_edges=True, merge_faces=True):
if not merge_edges and not merge_faces:
return
simplifier = ShapeUpgrade.ShapeUpgrade_UnifySameDomain()
simplifier.Initialize(self.native_brep, UnifyEdges=merge_edges, UnifyFaces=merge_faces)
simplifier.Initialize(self.native_brep, merge_edges, merge_faces)
simplifier.Build()
shape = simplifier.Shape()
self.native_brep = shape
Expand Down

0 comments on commit 2766a99

Please sign in to comment.