diff --git a/boswatch/utils/timer.py b/boswatch/utils/timer.py index be69ec4..cb89dda 100644 --- a/boswatch/utils/timer.py +++ b/boswatch/utils/timer.py @@ -70,7 +70,7 @@ class RepeatedTimer: return False def _target(self): - """!Runs the target function with his arguments""" + """!Runs the target function with his arguments in own thread""" self._start = time.time() while not self._event.wait(self.restTime): logging.debug("work") @@ -94,5 +94,5 @@ class RepeatedTimer: @property def overdueCount(self): - """!Property to get a count over all iverdues""" + """!Property to get a count over all overdues""" return self._overdueCount