Skip to content

Commit

Permalink
Merge pull request #1030 from tue-robotics/MatthijsBurgh-patch-2
Browse files Browse the repository at this point in the history
Fix check on wrong designator
  • Loading branch information
PetervDooren committed Apr 6, 2020
2 parents e606c1f + 13c3748 commit 3cd1544
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __init__(self, robot, place_location_designator, arm_designator, area=None,
check_resolve_type(place_location_designator, Entity)
self.place_location_designator = place_location_designator

check_resolve_type(place_location_designator, PublicArm)
check_resolve_type(arm_designator, PublicArm)
self.arm_designator = arm_designator

self._edge_distance = 0.05 # Distance to table edge
Expand Down

0 comments on commit 3cd1544

Please sign in to comment.