From 19526245c888f38dbed2e3d3642d3b8ffc9ad059 Mon Sep 17 00:00:00 2001 From: Jan Losinski Date: Thu, 17 Jan 2019 23:40:03 +0100 Subject: [PATCH] Fix missing async --- punkow/service/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/punkow/service/worker.py b/punkow/service/worker.py index 4998fc6..9088bca 100644 --- a/punkow/service/worker.py +++ b/punkow/service/worker.py @@ -150,5 +150,5 @@ class Worker(object): async def run(self): while True: - with self._timer.timed(): + async with self._timer.timed(): await self._run_once()