This is what I have so far:
def start(variable):
thread = threading.Timer(1, start, args=variable).start()
# do something
But is giving me an error. What is the correct way to do this?
Error:
TypeError: start() takes 1 positional argument but 6 were given