I've tried various methods such as using .strip and textwrap.dedent on this following bit of code:
import animation
import time
@animation.wait('spinner')
def timer_():
time.sleep(2)
print("test")
return
timer_()
My desirable output is:
test
But the output is:
\test
The animation is also indented the same way