Skip to content

Commit

Permalink
fix: fixed qualifying headers
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-cne committed Jul 16, 2024
1 parent bac48f0 commit 16221bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion converter/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def create_quali_classification():
# Remove 4th and 5th element of each row
tables[0] = [row[:3] + row[5:] for row in tables[0]]

text = ",".join(["pos", "no", "driver", "entrant", "q1", "q1_laps", "%", "q1_time", "q2", "q2_laps", "q2_time", "q3", "q3_laps", "q3_time"]) + "\n"
text = ",".join(["pos", "no", "driver", "entrant", "q1", "q1_laps", "q1_time", "q2", "q2_laps", "q2_time", "q3", "q3_laps", "q3_time"]) + "\n"
for row in tables[0]:
row[3] = entrant_mapping.get(row[3], row[3])
text += ",".join(row) + "\n"
Expand Down

0 comments on commit 16221bf

Please sign in to comment.