summaryrefslogtreecommitdiffstats
path: root/sqlglot/dataframe/sql/_typing.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sqlglot/dataframe/sql/_typing.py (renamed from sqlglot/dataframe/sql/_typing.pyi)4
1 files changed, 3 insertions, 1 deletions
diff --git a/sqlglot/dataframe/sql/_typing.pyi b/sqlglot/dataframe/sql/_typing.py
index 1682ec1..fb46026 100644
--- a/sqlglot/dataframe/sql/_typing.pyi
+++ b/sqlglot/dataframe/sql/_typing.py
@@ -11,6 +11,8 @@ if t.TYPE_CHECKING:
ColumnLiterals = t.Union[str, float, int, bool, t.List, t.Tuple, datetime.date, datetime.datetime]
ColumnOrName = t.Union[Column, str]
-ColumnOrLiteral = t.Union[Column, str, float, int, bool, t.List, t.Tuple, datetime.date, datetime.datetime]
+ColumnOrLiteral = t.Union[
+ Column, str, float, int, bool, t.List, t.Tuple, datetime.date, datetime.datetime
+]
SchemaInput = t.Union[str, t.List[str], StructType, t.Dict[str, t.Optional[str]]]
OutputExpressionContainer = t.Union[exp.Select, exp.Create, exp.Insert]