mirror of https://github.com/janLo/punkow
Fix missing async
This commit is contained in:
parent
f9b9b2b036
commit
19526245c8
|
|
@ -150,5 +150,5 @@ class Worker(object):
|
||||||
|
|
||||||
async def run(self):
|
async def run(self):
|
||||||
while True:
|
while True:
|
||||||
with self._timer.timed():
|
async with self._timer.timed():
|
||||||
await self._run_once()
|
await self._run_once()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue