Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
F4ria committed Sep 23, 2023
1 parent ba008e7 commit 16c6405
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion run_page/keep_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ def parse_raw_data_to_nametuple(
p["latitude"] = run_points_data[i][0]
p["longitude"] = run_points_data[i][1]
else:
run_points_data = [[p["latitude"], p["longitude"]] for p in run_points_data]
run_points_data = [
[p["latitude"], p["longitude"]] for p in run_points_data
]
if with_download_gpx:
if str(keep_id) not in old_gpx_ids:
gpx_data = parse_points_to_gpx(run_points_data_gpx, start_time)
Expand Down

0 comments on commit 16c6405

Please sign in to comment.