Skip to content

Commit 7f759a6

Browse files
committed
again
1 parent b646630 commit 7f759a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compas_fab/robots/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class FixedLengthList(list):
3232
validator(fll: FixedLengthList, key: slice, value: Any) -> bool
3333
"""
3434
def __init__(self, *args, **kwargs):
35-
super(FixedLengthList, self).__init__(*args, **kwargs)
35+
super(FixedLengthList, self).__init__(*args)
3636
self.validator = kwargs.get('validator')
3737
if self.validator:
3838
self.validator(self)

0 commit comments

Comments
 (0)