Fix Method calll to asyncRequests after function was made Private

This commit is contained in:
Jan Speller 2023-01-23 14:22:08 +01:00 committed by GitHub
parent b277640046
commit c5c45e39d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,7 +72,7 @@ class BoswatchPlugin(PluginBase):
loop = asyncio.get_event_loop()
future = asyncio.ensure_future(self.asyncRequests(urls))
future = asyncio.ensure_future(self._asyncRequests(urls))
loop.run_until_complete(future)
async def _asyncRequests(self, urls):