Skip to content

Commit

Permalink
Make customer tags easier to read
Browse files Browse the repository at this point in the history
  • Loading branch information
andchiind committed Feb 21, 2024
1 parent 58137dd commit 48450d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/isar_exr/robotinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def update_site_with_tasks(
is_possible_return_to_home_mission = True
robot_pose: Pose = step.pose
if isinstance(step, InspectionStep):
customer_tag: str = task.tag_id + str(robot_pose)
customer_tag: str = task.tag_id + "|" + str(robot_pose)
existing_poi_id = (
self.api.get_point_of_interest_by_customer_tag(
customer_tag=customer_tag,
Expand Down

0 comments on commit 48450d3

Please sign in to comment.