1
0
Fork 0
sqlglot/sqlglot/_typing.py

9 lines
142 B
Python
Raw Normal View History

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