mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2025-12-06 07:12:04 +01:00
Fix Method calll to asyncRequests after function was made Private
This commit is contained in:
parent
b277640046
commit
c5c45e39d9
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue