Skip to content

Commit 17862b5

Browse files
committed
change python doc
1 parent 276351c commit 17862b5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

python/datafusion/dataframe.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,8 +406,9 @@ def select_columns(self, *args: str) -> DataFrame:
406406
return self.select(*args)
407407

408408
def select_exprs(self, *args: str) -> DataFrame:
409-
"""Project arbitrary list of expression strings into a new DataFrame. Method will parse string expressions into logical plan expressions.
410-
The output DataFrame has one column for each element in exprs.
409+
"""Project arbitrary list of expression strings into a new DataFrame.
410+
Method will parse string expressions into logical plan expressions.
411+
The output DataFrame has one column for each element in exprs.
411412
412413
Returns:
413414
DataFrame only containing the specified columns.

0 commit comments

Comments
 (0)