7 lines
180 B
Python
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) |