Skip to content

Commit fca0407

Browse files
committed
static imports
1 parent 431d1a9 commit fca0407

File tree

1 file changed

+26
-4
lines changed

1 file changed

+26
-4
lines changed

src/compas_rhino/objects/__init__.py

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,32 @@
5353
"""
5454
from __future__ import absolute_import
5555

56-
from ._select import * # noqa : F401 F403
57-
from ._modify import * # noqa : F401 F403
58-
59-
from .inspectors import * # noqa : F401 F403
56+
from ._select import ( # noqa : F401 F403
57+
mesh_select_vertex,
58+
mesh_select_vertices,
59+
mesh_select_face,
60+
mesh_select_faces,
61+
mesh_select_edge,
62+
mesh_select_edges,
63+
network_select_node,
64+
network_select_nodes,
65+
network_select_edge,
66+
network_select_edges
67+
)
68+
from ._modify import ( # noqa : F401 F403
69+
network_update_attributes,
70+
network_update_node_attributes,
71+
network_update_edge_attributes,
72+
network_move_node,
73+
mesh_update_attributes,
74+
mesh_update_vertex_attributes,
75+
mesh_update_face_attributes,
76+
mesh_update_edge_attributes,
77+
mesh_move_vertex,
78+
mesh_move_vertices,
79+
mesh_move_face
80+
)
81+
from .inspectors import MeshVertexInspector # noqa : F401 F403
6082

6183
from ._object import BaseObject
6284
from .meshobject import MeshObject

0 commit comments

Comments
 (0)