make shortened interval shorter

This commit is contained in:
Jan Losinski 2019-01-17 23:39:50 +01:00
parent 2fc603290d
commit f9b9b2b036
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class Timer(object):
def _wait_time(self, now):
for special in self._special_times:
if special.is_between(now):
return 1
return 0.5
return self._interval
@contextlib.asynccontextmanager