()
| 96 | |
| 97 | |
| 98 | def test_8837_async() -> None: |
| 99 | as_ = async_sessionmaker() |
| 100 | |
| 101 | assert_type(as_, async_sessionmaker[AsyncSession]) |
| 102 | |
| 103 | async_session = as_() |
| 104 | |
| 105 | assert_type(async_session, AsyncSession) |
| 106 | |
| 107 | |
| 108 | # test #9338 |
nothing calls this directly
no test coverage detected