Skip to content

Commit

Permalink
fix arguments not match error
Browse files Browse the repository at this point in the history
  • Loading branch information
tiny656 committed Dec 31, 2024
1 parent 33d7b31 commit 68fb0ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_page/joyrun_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def parse_raw_data_to_nametuple(self, run_data, old_gpx_ids, with_gpx=False):
}
return namedtuple("x", d.keys())(*d.values())

def get_all_joyrun_tracks(self, old_tracks_ids, with_gpx=False):
def get_all_joyrun_tracks(self, old_tracks_ids, with_gpx=False, threshold=10):
run_ids = self.get_runs_records_ids()
old_tracks_ids = [int(i) for i in old_tracks_ids if i.isdigit()]

Expand Down

0 comments on commit 68fb0ec

Please sign in to comment.