Skip to content

Commit 6a92731

Browse files
committed
type hint fix
1 parent 1c6dcb9 commit 6a92731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
@pytest_asyncio.fixture
15-
async def db_session_test() -> AsyncGenerator[AsyncSession]:
15+
async def db_session_test() -> AsyncGenerator[AsyncSession, None]:
1616
"""The session that is used inside the test"""
1717
async with rollback_session(connection) as session:
1818
yield session

0 commit comments

Comments
 (0)