Skip to content

Commit

Permalink
reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ashum68 committed Jun 5, 2024
1 parent 4eae193 commit e29414a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/flight_interface/flight_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ def run(self) -> "tuple[bool, drone_odometry_local.DroneOdometryLocal | None]":

global_position = odometry.position

result, local_position = conversions.position_global_to_local(global_position, self.home_location)
result, local_position = conversions.position_global_to_local(
global_position, self.home_location
)
if not result:
return False, None

Expand Down

0 comments on commit e29414a

Please sign in to comment.