Fix joint shape

This commit is contained in:
glannuzel
2025-07-28 17:18:00 +02:00
parent 0800406d2b
commit 40cb84c005
+1 -1
View File
@@ -80,7 +80,7 @@ class Reachy2Robot(Robot):
def observation_features(self) -> dict:
return {
"dtype": "float32",
"shape": (len(REACHY2_MOTORS),),
"shape": len(REACHY2_MOTORS),
"names": {"motors": list(REACHY2_MOTORS)},
}