Skip to content

Commit 54a6b50

Browse files
committed
fix: unnecessary default type argument in conftest
1 parent acc511e commit 54a6b50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/integration/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ async def db_session(database_setup: DatabaseSessionManager):
4040

4141

4242
@pytest_asyncio.fixture(scope="module", loop_scope="session")
43-
async def client() -> AsyncGenerator[Any, None]:
43+
async def client() -> AsyncGenerator[Any]:
4444
# base_url is just a random placeholder url
4545
# ASGITransport is just telling the async client to pass all requests to app
4646
# `async with` syntax used so that the connecton will automatically be closed once done

0 commit comments

Comments
 (0)