Skip to content

Commit

Permalink
converte na hr certa
Browse files Browse the repository at this point in the history
  • Loading branch information
tamireinhorn committed Sep 16, 2023
1 parent 4d33dd2 commit 104fb3b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pipelines/datasets/br_denatran_frota/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ def get_latest_data(table_name: str):
log(denatran_data.head(2))
year = denatran_data["ano"].max()
month = denatran_data.loc[denatran_data["ano"] == year]["mes"].max()
year = int(year)
month = int(month)
log(year)
log(type(year))
log(month)
Expand Down

0 comments on commit 104fb3b

Please sign in to comment.