Merge branch 'develop' into bugfix/ISSUE-101-InputSources_Multimon

This commit is contained in:
Bastian Schroll 2023-01-24 07:25:54 +01:00 committed by GitHub
commit a92dc0ce7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

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

View file

@ -8,6 +8,7 @@ mkdocs
# for develope only # for develope only
pytest pytest
pytest-cov pytest-cov
flake8==4.0.1
pytest-flake8 pytest-flake8
pytest-flakes pytest-flakes
pytest-randomly pytest-randomly