Skip to content

Commit 88ccbd8

Browse files
committed
cleanup
1 parent f4574ec commit 88ccbd8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python/datafusion/expr.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@
8585
ScalarVariable = expr_internal.ScalarVariable
8686
SimilarTo = expr_internal.SimilarTo
8787
Sort = expr_internal.Sort
88-
# SortExpr = expr_internal.SortExpr
8988
Subquery = expr_internal.Subquery
9089
SubqueryAlias = expr_internal.SubqueryAlias
9190
TableScan = expr_internal.TableScan
@@ -687,7 +686,7 @@ def __init__(self, expr: Expr, ascending: bool, nulls_first: bool) -> None:
687686
self.raw_sort = expr_internal.SortExpr(expr, ascending, nulls_first)
688687

689688
def expr(self) -> Expr:
690-
"""Return the raw expr backing teh SortExpr."""
689+
"""Return the raw expr backing the SortExpr."""
691690
return Expr(self.raw_sort.expr())
692691

693692
def ascending(self) -> bool:

0 commit comments

Comments
 (0)