Skip to content

Commit

Permalink
Update dataframe.py
Browse files Browse the repository at this point in the history
removed *args, **kwargs
  • Loading branch information
chanansh committed Dec 31, 2018
1 parent 54105d9 commit 0b1f562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyspark/sql/dataframe.py
Expand Up @@ -2078,7 +2078,7 @@ def transform(self, func):
+----+---+--------+---------+
<BLANKLINE>
"""
return func(self, *args, **kwargs)
return func(self)

@since(1.3)
def toPandas(self):
Expand Down

0 comments on commit 0b1f562

Please sign in to comment.