Skip to content

Commit

Permalink
Fixed Inappropriate Logical Expression (#945)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabihatasneem authored Dec 3, 2023
1 parent 331f087 commit a141cf4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def main():
goal = (58, 56)
grid = get_occupancy_grid(arm, obstacles)
route = astar_torus(grid, start, goal)
if len(route) >= 0:
if route:
animate(grid, arm, route)


Expand Down

0 comments on commit a141cf4

Please sign in to comment.