Skip to content

Commit 5b51703

Browse files
committed
ruff
1 parent e8ad9a5 commit 5b51703

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
from .collision import mesh_mesh_collision
22
from .contacts import mesh_mesh_contacts
3+
4+
__all__ = [
5+
"mesh_mesh_collision",
6+
"mesh_mesh_contacts",
7+
]

src/compas_model/models/model.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
from collections import OrderedDict
2-
from collections import deque
32
from typing import Generator
43
from typing import Optional
5-
from typing import Type
64

75
from compas.datastructures import Datastructure
86
from compas.geometry import Frame
97
from compas.geometry import Transformation
108
from compas_model.datastructures import KDTree
119
from compas_model.elements import Element
12-
from compas_model.interactions import Interaction
1310
from compas_model.materials import Material
1411

1512
from .bvh import ElementBVH

0 commit comments

Comments
 (0)