Skip to content

Commit 9897b63

Browse files
committed
format
1 parent a933fdb commit 9897b63

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

python/datafusion/_internal/expr/__init__.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
from .base import Expr as Expr, ExprFuncBuilder as ExprFuncBuilder
1919
from .column import Column as Column
20-
from .literal import Literal as Literal
2120
from .binary_expr import BinaryExpr as BinaryExpr
2221
from .literal import Literal as Literal
2322
from .aggregate_expr import AggregateFunction as AggregateFunction

python/datafusion/_internal/functions/__init__.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
from typing import Any, List, Optional, Protocol
1919
from ..expr import Expr, SortExpr, CaseBuilder, WindowFrame
2020
from .. import SessionContext
21-
from ...common import NullTreatment
2221

2322
def in_list(expr: Expr, value: List[Expr], negated: bool) -> Expr: ...
2423

python/datafusion/functions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,6 @@ def to_timestamp_millis(arg: Expr, *formatters: Expr) -> Expr:
947947
948948
See :py:func:`to_timestamp` for a description on how to use formatters.
949949
"""
950-
951950
formatters_inner = [f.expr for f in formatters]
952951
return Expr(f.to_timestamp_millis(arg.expr, *formatters_inner))
953952

0 commit comments

Comments
 (0)