We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2a0982f + f94653c commit 3284fbcCopy full SHA for 3284fbc
CHANGELOG.md
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
12
### Changed
13
14
+* Fixed bug in `compas_viewer` due to import of `RobotModelObject` inside registration function.
15
+
16
### Removed
17
18
src/compas_robots/viewer/scene/__init__.py
@@ -2,12 +2,11 @@
2
from compas.scene import register
3
4
from compas_robots import RobotModel
5
+from .robotmodelobject import RobotModelObject
6
7
8
@plugin(category="factories", requires=["compas_viewer"])
9
def register_scene_objects():
- from .robotmodelobject import RobotModelObject
10
-
register(RobotModel, RobotModelObject, context="Viewer")
0 commit comments