I'm not an expert in bot with python, but I guess this is the solution.
Since your TIMER() function is an Async function, you have to use await( ) to get its actual result instead of the coroutine object.
Try:
timer-result = await TIMER()
print(timer-result)