Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
laysabit committed Apr 16, 2024
1 parent 4fa1f59 commit bcb153f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dags/stellar_etl_airflow/test_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

def compare_transforms_and_bq_rows():
# current_date is always today - 1
current_date = datetime(2024, 4, 15, 0, 0) - timedelta(days=1)
current_date = current_date.date()
current_date = datetime.datetime.now() - datetime.timedelta(days=1)
# current_date = current_date.date()
print("Current date is: ", current_date)

# Get all the execution dates for the current date
Expand Down

0 comments on commit bcb153f

Please sign in to comment.