1
0
Fork 0
sqlglot/sqlglot/_typing.py
Daniel Baumann bb75596aa9
Adding upstream version 15.0.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-13 15:56:32 +01:00

8 lines
142 B
Python

from __future__ import annotations
import typing as t
import sqlglot
E = t.TypeVar("E", bound="sqlglot.exp.Expression")
T = t.TypeVar("T")