Skip to content

Commit beceee5

Browse files
committed
Fixed non-explicit arguments in inherited add_item for dispatch
1 parent 43c6133 commit beceee5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

simvue/dispatch/direct.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def add_item(
4646
**__,
4747
) -> None:
4848
"""Execute callback on the given item"""
49-
super().add_item(item, object_type, metadata)
49+
super().add_item(item, object_type=object_type, metadata=metadata)
5050
self._callback([item], object_type)
5151

5252
def run(self) -> None:

0 commit comments

Comments
 (0)