From c5c45e39d90c8539536fe9c7b65429a67f4071a3 Mon Sep 17 00:00:00 2001 From: Jan Speller Date: Mon, 23 Jan 2023 14:22:08 +0100 Subject: [PATCH] Fix Method calll to asyncRequests after function was made Private --- plugin/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/http.py b/plugin/http.py index 1af3035..fa14036 100644 --- a/plugin/http.py +++ b/plugin/http.py @@ -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):