mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2026-01-07 01:00:58 +01:00
Merge pull request #105 from janspeller/feature/http_module_fix
Fix call to asyncRequests after Method was made private
This commit is contained in:
commit
2d9791f762
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ mkdocs
|
|||
# for develope only
|
||||
pytest
|
||||
pytest-cov
|
||||
flake8==4.0.1
|
||||
pytest-flake8
|
||||
pytest-flakes
|
||||
pytest-randomly
|
||||
|
|
|
|||
Loading…
Reference in a new issue