Skip to content

Commit

Permalink
change type
Browse files Browse the repository at this point in the history
  • Loading branch information
GPrathap committed Jun 16, 2024
1 parent 5de9a8e commit d99fdd1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def two_smallest_indices(self, lst):
return [min_index1, min_index2]

def extract_number(self, s):
return int(s.split('-')[0][1:])
return float(s.split('-')[0][1:])

def get_navigate_through_poses_goal(self, poses, actions, edge_ids):
# goals = []
Expand Down

0 comments on commit d99fdd1

Please sign in to comment.