remove threading from util

This commit is contained in:
Lukas 2021-09-25 13:26:31 +02:00
parent a472c4dc06
commit dddd444e4d
1 changed files with 0 additions and 18 deletions

18
util.py
View File

@ -10,28 +10,10 @@ __status__ = "Development"
# Default
import threading
import logging
from datetime import date
class MyTimer(threading.Timer):
def run(self):
print(self.__dict__)
print(f"{self._name} Run once")
while not self.finished.wait(self.interval):
print(f"{self._name} Run x")
self.function(*self.args, **self.kwargs)
print(f"{self._name} Ran x")
print(f"{self._name} Run end")
def maketimer(cooldown, func):
timer = MyTimer(cooldown, func)
timer.daemon = True
return timer
def setupLogger():
"""