Fix missing async

This commit is contained in:
Jan Losinski 2019-01-17 23:40:03 +01:00
parent f9b9b2b036
commit 19526245c8
1 changed files with 1 additions and 1 deletions

View File

@ -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()