Skip to content

Commit 2ff3694

Browse files
authored
Clean up unused scene object imports
Removed unused imports for various scene object types.
1 parent 456a6a3 commit 2ff3694

File tree

1 file changed

+1
-26
lines changed

1 file changed

+1
-26
lines changed

src/compas_notebook/scene/__init__.py

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# ruff: noqa: F401
12
"""This package provides scene object plugins for visualising COMPAS objects in Jupyter Notebooks using three.
23
When working in a notebook, :class:`compas.scene.SceneObject`
34
will automatically use the corresponding PyThreeJS scene object for each COMPAS object type.
@@ -110,29 +111,3 @@ def register_scene_objects():
110111
register(Vector, ThreeVectorObject, context="Notebook")
111112
register(list, ThreeGroupObject, context="Notebook")
112113

113-
114-
_ = [
115-
"Box",
116-
"Brep",
117-
"Capsule",
118-
"Circle",
119-
"Cone",
120-
"Curve",
121-
"Cylinder",
122-
"Dot",
123-
"Ellipse",
124-
"Frame",
125-
"Graph",
126-
"Line",
127-
"Mesh",
128-
"Plane",
129-
"Point",
130-
"Pointcloud",
131-
"Polygon",
132-
"Polyhedron",
133-
"Polyline",
134-
"Sphere",
135-
"Surface",
136-
"Torus",
137-
"Vector",
138-
]

0 commit comments

Comments
 (0)