fix unit tests

This commit is contained in:
Remi Cadene
2024-10-24 11:15:18 +02:00
parent 5d64ba5da1
commit 4d03ece607
2 changed files with 35 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ class ManipulatorRobotConfig:
super().__setattr__(prop, val)
def __post_init__(self):
if self.robot_type not in ["koch", "aloha", "so100", "moss"]:
if self.robot_type not in ["koch", "koch_bimanual", "aloha", "so100", "moss"]:
raise ValueError(f"Provided robot type ({self.robot_type}) is not supported.")