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
« prev ^ index » next coverage.py v7.6.1, created at 2024-09-09 00:02 +0000
1from typing import Generic, TypeVar 1abcdef
3from sqlalchemy.sql.base import Executable as _Executable 1abcdef
5_T = TypeVar("_T") 1abcdef
8class Executable(_Executable, Generic[_T]): 1abcdef
9 pass 1abcdef