Skip to content

Commit

Permalink
Catch orbita config in setup_head method. (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
simheo authored Sep 4, 2023
1 parent 9e5e638 commit 60f2b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reachy_sdk/head.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Head:

def __init__(self, config, joints: List[Joint], grpc_channel) -> None:
"""Set up the head."""
if 'no_head' in config:
if 'no_head' in config or config == 'orbita':
self._required_joints = (
'neck_roll', 'neck_pitch', 'neck_yaw',
)
Expand Down

0 comments on commit 60f2b17

Please sign in to comment.