Files
2025-04-24 11:44:23 +02: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