Skip to content

Commit

Permalink
Remove print statement and add TODO.
Browse files Browse the repository at this point in the history
  • Loading branch information
jws-1 committed Apr 16, 2024
1 parent 68e03d0 commit 2c3bac2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tasks/receptionist/src/receptionist/states/seat_guest.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,6 @@ def execute(self, userdata) -> str:

if person_polygon.intersects(seat_polygon):
seat_is_free = False
print(
f"Intersection between person at point {person.point} and seat at point {seat.point}"
)
break

if seat_is_free:
Expand Down Expand Up @@ -148,7 +145,7 @@ def __init__(
"aborted": "failed",
"preempted": "failed",
},
)
) # TODO: sleep after this.

smach.StateMachine.add(
"RESET_HEAD",
Expand Down

0 comments on commit 2c3bac2

Please sign in to comment.