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 b646630 commit 7f759a6Copy full SHA for 7f759a6
src/compas_fab/robots/configuration.py
@@ -32,7 +32,7 @@ class FixedLengthList(list):
32
validator(fll: FixedLengthList, key: slice, value: Any) -> bool
33
"""
34
def __init__(self, *args, **kwargs):
35
- super(FixedLengthList, self).__init__(*args, **kwargs)
+ super(FixedLengthList, self).__init__(*args)
36
self.validator = kwargs.get('validator')
37
if self.validator:
38
self.validator(self)
0 commit comments