浏览代码

Bugfix in Reference DataHandler instanciation

**kwargs was not given to super() constructor
Yann Weber 8 年前
父节点
当前提交
32e2579350
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      lodel/leapi/datahandlers/base_classes.py

+ 1
- 1
lodel/leapi/datahandlers/base_classes.py 查看文件

@@ -343,7 +343,7 @@ class Reference(DataHandler):
343 343
 class SingleRef(Reference):
344 344
 
345 345
     def __init__(self, allowed_classes=None, **kwargs):
346
-        super().__init__(allowed_classes=allowed_classes)
346
+        super().__init__(allowed_classes=allowed_classes, **kwargs)
347 347
 
348 348
 
349 349
     ##@brief Check and cast value in appropriate type

正在加载...
取消
保存