I have a very simple thread in python:
threading.Thread(target=self.clock).start()
All I want to do is be able to delete the current one and make a new one (that will be set to 0 seconds), so it can start counting again, but no matter what I try I cannot stop the original thread from counting.