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

1from typing import Generic, TypeVar 1abcdefghij

2 

3from sqlalchemy.sql.base import Executable as _Executable 1abcdefghij

4 

5_T = TypeVar("_T") 1abcdefghij

6 

7 

8class Executable(_Executable, Generic[_T]): 1abcdefghij

9 pass 1abcdefghij