async def my():
now = datetime.utcnow()
print(f"{now}")
def repeat(coro, loop):
asyncio.ensure_future(coro(), loop=loop)
loop.call_later(DELAY, repeat, coro, loop)
if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.call_later(DELAY, repeat, my, loop)
executor.start_polling(dp, skip_updates=True, loop=loop)