Skip to content

Commit

Permalink
rm tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aspeddro committed Oct 5, 2023
1 parent 7348d1a commit 6a36719
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,10 @@ def get_next_date() -> datetime.date:
"br_cgu_servidores_executivo_federal",
"cadastro_servidores",
"yy-mm",
"basedosdados-dev",
"basedosdados",
)

year, month = last_date_in_bq.split("-")

# next_date = datetime.date(int(year), int(month), 1) + relativedelta(months=1)
return datetime.date(2023, 7, 1)
next_date = datetime.date(int(year), int(month), 1) + relativedelta(months=1)
return next_date

0 comments on commit 6a36719

Please sign in to comment.