Skip to content

Commit

Permalink
Fixed formatting issues on CI - Part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
mgupta27 committed Apr 16, 2024
1 parent 2c76a98 commit 6ccbbce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/load_waypoint_name_to_coordinates_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ def load_waypoint_name_to_coordinates_and_altitude_map(
continue

name, latitude, longitude, altitude = parts
name_to_coordinates_and_altitude_map[
name
] = location_ground_and_altitude.LocationGroundAndAltitude(
name, float(latitude), float(longitude), float(altitude)
name_to_coordinates_and_altitude_map[name] = (
location_ground_and_altitude.LocationGroundAndAltitude(
name, float(latitude), float(longitude), float(altitude)
)
)

if len(name_to_coordinates_and_altitude_map) > 0:
Expand Down

0 comments on commit 6ccbbce

Please sign in to comment.