Skip to content

Commit 75e3581

Browse files
committed
Update robot.py
1 parent 1fa3689 commit 75e3581

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compas_fab/robots/robot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ def get_group_configuration(self, group, full_configuration):
434434
:class:`compas_fab.robots.Configuration`
435435
The configuration of the group.
436436
"""
437-
full_configuration, full_configuration_scaled = self._check_full_configuration_and_scale(full_configuration) # adds joint_names to full_configuration and makes copy
437+
full_configuration = self._check_full_configuration_and_scale(full_configuration)[0] # adds joint_names to full_configuration and makes copy
438438
full_joint_state = dict(zip(full_configuration.joint_names, full_configuration.values))
439439
group_joint_names = self.get_configurable_joint_names(group)
440440
values = [full_joint_state[name] for name in group_joint_names]

0 commit comments

Comments
 (0)