We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0a5fd2 commit 7fbbe90Copy full SHA for 7fbbe90
src/compas/robots/__init__.py
@@ -117,8 +117,7 @@
117
from __future__ import absolute_import
118
119
from .configuration import (
120
- Configuration,
121
- FixedLengthList
+ Configuration
122
)
123
from .model import (
124
Axis,
@@ -193,6 +192,5 @@
193
192
'LocalPackageMeshLoader',
194
'GithubPackageMeshLoader',
195
196
- 'Configuration',
197
- 'FixedLengthList'
+ 'Configuration'
198
]
tests/compas/robots/test_configuration.py
@@ -3,7 +3,7 @@
3
4
from compas.robots import Joint
5
from compas.robots import Configuration
6
-from compas.robots import FixedLengthList
+from compas.robots.configuration import FixedLengthList
7
8
9
def test_bool():
0 commit comments