Skip to content

Commit e0f0ecc

Browse files
committed
Another minor fix to allow calling tsr with no kinbody
1 parent bcf87d1 commit e0f0ecc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/prpy/tsr/tsrlibrary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def __call__(self, kinbody, action_name, *args, **kw_args):
9999
' with robot "{:s}" and object "{:s}".'.format(
100100
action_name, self.robot_name, kinbody_name))
101101

102-
return f(self.robot, kinbody, *args, **kw_args)
102+
return f(self.robot, kinbody=kinbody, *args, **kw_args)
103103

104104
def load_yaml(self, yaml_file):
105105
"""

0 commit comments

Comments
 (0)