Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gleasonw authored Jan 23, 2024
1 parent a094724 commit 6d2dea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ def get_unix_timestamp(row) -> int:
month = int(row.get("mois", 1))

dt = datetime(year, month, 1)
return dt.timestamp()
return dt.timestamp() * 1000

data = series_dataframe.apply(
lambda row: (get_unix_timestamp(row), row["ratio"]), axis=1
Expand Down

0 comments on commit 6d2dea0

Please sign in to comment.