From 8b5ba9755571e23effd3213eb6ce839c78933b4b Mon Sep 17 00:00:00 2001 From: Florian Scherf Date: Sun, 16 Jun 2024 21:35:49 +0200 Subject: [PATCH] lint: pytest: fix PT001 issues Signed-off-by: Florian Scherf --- lona/pytest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lona/pytest.py b/lona/pytest.py index ff4bc219..81fcc58a 100644 --- a/lona/pytest.py +++ b/lona/pytest.py @@ -117,7 +117,7 @@ def _debug_interactive(): return self.event_loop.run_in_executor(None, _debug_interactive) -@pytest.fixture() +@pytest.fixture def lona_app_context(request, aiohttp_client, event_loop, pytestconfig): async def setup_lona_app_context( setup_app: Callable[[App], None], @@ -149,7 +149,7 @@ async def setup_aiohttp_app() -> Application: Channel._clear_state() -@pytest.fixture() +@pytest.fixture def lona_project_context(request, aiohttp_client, event_loop, pytestconfig): async def setup_lona_project_context( project_root: str = '',