2021-11-30 17:12:28 +01:00

10 lines
170 B
Python

from typing import Generic, TypeVar
from sqlalchemy.sql.base import Executable as _Executable
_T = TypeVar("_T")
class Executable(_Executable, Generic[_T]):
pass