(self)
| 23 | ) |
| 24 | |
| 25 | def get_scope_session(self): |
| 26 | return async_scoped_session( |
| 27 | session_factory=self.session_factory, |
| 28 | scopefunc=current_task |
| 29 | ) |
| 30 | |
| 31 | @asynccontextmanager |
| 32 | async def get_db_session(self): |
nothing calls this directly
no outgoing calls
no test coverage detected