Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Swapped lapendtime for lapstarttime
  • Loading branch information
randyzwitch committed Mar 18, 2019
1 parent 67a1224 commit c9aa785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion f1dash/track.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 41,7 @@ def get_current_lap():
data = pd.read_sql("select * from v_most_recent_lap_melbourne", conn)

data["lapstarttime"] = [x.strftime("%Y-%m-%d %H:%M:%S") for x in data["lapstarttime"]]
data["lapstarttime"] = [x.strftime("%Y-%m-%d %H:%M:%S") for x in data["lapendtime"]]
data["lapendtime"] = [x.strftime("%Y-%m-%d %H:%M:%S") for x in data["lapendtime"]]

return data

Expand Down

0 comments on commit c9aa785

Please sign in to comment.