I want to make sure I got this right. Does this sc...
# ask-community
j
I want to make sure I got this right. Does this schedule execute every morning at 9AM NY time?
Copy code
Schedule(
  clocks=[
    IntervalClock(
      start_date=pendulum.datetime(2021, 1, 1, 9, tz="America/New_York"),
      interval=timedelta(days=1),
    ),
  ],
)
k
Hey @Jason Prado, Looks good to me!
j
Thanks!