Update 2025-04-24_11:44:19
This commit is contained in:
9
venv/lib/python3.11/site-packages/sqlmodel/sql/base.py
Normal file
9
venv/lib/python3.11/site-packages/sqlmodel/sql/base.py
Normal file
@ -0,0 +1,9 @@
|
||||
from typing import Generic, TypeVar
|
||||
|
||||
from sqlalchemy.sql.base import Executable as _Executable
|
||||
|
||||
_T = TypeVar("_T")
|
||||
|
||||
|
||||
class Executable(_Executable, Generic[_T]):
|
||||
pass
|
Reference in New Issue
Block a user