Skip to content

Commit 7fbbe90

Browse files
committed
Hide FixedLengthList in level-three import
1 parent e0a5fd2 commit 7fbbe90

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/compas/robots/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,7 @@
117117
from __future__ import absolute_import
118118

119119
from .configuration import (
120-
Configuration,
121-
FixedLengthList
120+
Configuration
122121
)
123122
from .model import (
124123
Axis,
@@ -193,6 +192,5 @@
193192
'LocalPackageMeshLoader',
194193
'GithubPackageMeshLoader',
195194

196-
'Configuration',
197-
'FixedLengthList'
195+
'Configuration'
198196
]

tests/compas/robots/test_configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from compas.robots import Joint
55
from compas.robots import Configuration
6-
from compas.robots import FixedLengthList
6+
from compas.robots.configuration import FixedLengthList
77

88

99
def test_bool():

0 commit comments

Comments
 (0)