Fix asynchronous methods being not awaited

This commit is contained in:
Joscha
2021-05-13 19:39:49 +02:00
parent 910462bb72
commit 68781a88ab
2 changed files with 10 additions and 10 deletions

View File

@ -242,7 +242,7 @@ class Crawler(ABC):
path, mtime, redownload, on_conflict)
async def cleanup(self) -> None:
self._output_dir.cleanup()
await self._output_dir.cleanup()
async def run(self) -> None:
"""