From 407de76ccf53a25288dedfb4cb372d63397bb8b5 Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Fri, 21 Sep 2018 20:14:56 +0200 Subject: [PATCH] edit comments --- boswatch/utils/timer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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