diff --git a/unilabos/resources/container.py b/unilabos/resources/container.py index 72fba553..adf9a23c 100644 --- a/unilabos/resources/container.py +++ b/unilabos/resources/container.py @@ -7,7 +7,14 @@ from unilabos.ros.msgs.message_converter import convert_from_ros_msg class RegularContainer(Container): - pass + def __init__(self, *args, **kwargs): + if "size_x" not in kwargs: + kwargs["size_x"] = 0 + if "size_y" not in kwargs: + kwargs["size_y"] = 0 + if "size_z" not in kwargs: + kwargs["size_z"] = 0 + super().__init__(*args, **kwargs) #