Coverage for sqlmodel/sql/base.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-09-09 00:02 +0000

1from typing import Generic, TypeVar 1abcdef

2 

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

4 

5_T = TypeVar("_T") 1abcdef

6 

7 

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

9 pass 1abcdef