Coverage for sqlmodel/sql/base.py: 100%
5 statements
« prev ^ index » next coverage.py v7.11.0, created at 2025-10-27 00:03 +0000
« prev ^ index » next coverage.py v7.11.0, created at 2025-10-27 00:03 +0000
1from typing import Generic, TypeVar 1abcdefghij
3from sqlalchemy.sql.base import Executable as _Executable 1abcdefghij
5_T = TypeVar("_T") 1abcdefghij
8class Executable(_Executable, Generic[_T]): 1abcdefghij
9 pass 1abcdefghij