Files
flippr-game/utils/RepeatTimer.py
Jonas Zeunert 6450ee22dc asdf
2021-03-07 15:47:45 +01:00

7 lines
180 B
Python

from threading import Timer
class RepeatTimer(Timer):
def run(self):
while not self.finished.wait(self.interval):
self.function(*self.args, **self.kwargs)