Skip to content

Commit

Permalink
type error fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
jivankesan committed Feb 2, 2024
1 parent b317cf3 commit 01d99cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/decision/decision.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def distance_to_pad(

def weight_pads(
self,
pads: list[object_in_world.ObjectInWorld],
pads: "list[object_in_world.ObjectInWorld]",
current_position: odometry_and_time.OdometryAndTime,
):
"""
Expand Down Expand Up @@ -57,7 +57,7 @@ def __find_best_pad(self):
def run(
self,
states: odometry_and_time.OdometryAndTime,
pads: list[object_in_world.ObjectInWorld],
pads: "list[object_in_world.ObjectInWorld]",
) -> decision_command.DecisionCommand:
"""
Determine the best landing pad and issue a command to land there.
Expand Down

0 comments on commit 01d99cf

Please sign in to comment.