Coverage for sqlmodel / sql / base.py: 100%
5 statements
« prev ^ index » next coverage.py v7.13.0, created at 2026-01-06 21:09 +0000
« prev ^ index » next coverage.py v7.13.0, created at 2026-01-06 21:09 +0000
1from typing import Generic, TypeVar 1abcdefghi
3from sqlalchemy.sql.base import Executable as _Executable 1abcdefghi
5_T = TypeVar("_T") 1abcdefghi
8class Executable(_Executable, Generic[_T]): 1abcdefghi
9 pass 1abcdefghi