1
0
mirror of https://github.com/janLo/punkow synced 2026-06-19 15:38:00 +00:00

make shortened interval shorter

This commit is contained in:
2019-01-17 23:39:50 +01:00
parent 2fc603290d
commit f9b9b2b036
+1 -1
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