Skip to content

Commit

Permalink
[fix][s] Incorrect date format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gradedSystem authored Nov 8, 2024
1 parent 9d6bac2 commit 9315257
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def transform_csv(dest):
next(reader)
updated_date_row = next(reader)
last_updated_date = updated_date_row[1].split("-")
last_updated_date = f"{last_updated_date[0]}-{last_updated_date[2]}-{last_updated_date[1]}"
last_updated_date = f"{last_updated_date[0]}-{last_updated_date[1]}-{last_updated_date[2]}"

next(reader)
header = next(reader)
Expand Down

0 comments on commit 9315257

Please sign in to comment.