Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Apr 24, 2024
1 parent a8c6c49 commit 828edab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/devguide/workflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ The procedure for submitting a PR is the following.

.. code-block:: bash
invoke lint
invoke check
invoke test
invoke docs
Expand Down
5 changes: 1 addition & 4 deletions src/compas_rhino/geometry/brep/brep.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from compas.geometry import Plane
from compas.geometry import Point
from compas.tolerance import TOL

from compas_rhino.conversions import box_to_rhino
from compas_rhino.conversions import curve_to_compas
from compas_rhino.conversions import curve_to_rhino
Expand Down Expand Up @@ -487,9 +486,7 @@ def from_boolean_union(cls, breps_a, breps_b):
if not isinstance(breps_b, list):
breps_b = [breps_b]

resulting_breps = Rhino.Geometry.Brep.CreateBooleanUnion(
[b.native_brep for b in breps_a + breps_b], TOL.absolute
)
resulting_breps = Rhino.Geometry.Brep.CreateBooleanUnion([b.native_brep for b in breps_a + breps_b], TOL.absolute)
return [RhinoBrep.from_native(brep) for brep in resulting_breps]

@classmethod
Expand Down

0 comments on commit 828edab

Please sign in to comment.