Skip to content

Commit

Permalink
Fix default engine assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
onitake committed Oct 27, 2024
1 parent 3d7550e commit 8e51445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trimesh/boolean.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@ def intersection(
def set_default_engine(engine):
if engine not in available_engines:
raise ValueError(f"Engine {engine} is not available on this system")
_engines[None] = available_engines[engine].boolean
_engines[None] = _engines[engine]

0 comments on commit 8e51445

Please sign in to comment.