9 lines
142 B
Python
9 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")
|