Skip to content

Commit

Permalink
lint python
Browse files Browse the repository at this point in the history
  • Loading branch information
brkyvz committed May 1, 2015
1 parent 7f098bc commit 939b7c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/pyspark/sql/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -1360,12 +1360,13 @@ def cov(self, col1, col2):
return self.df.cov(col1, col2)

cov.__doc__ = DataFrame.cov.__doc__

def crosstab(self, col1, col2):
return self.df.crosstab(col1, col2)

crosstab.__doc__ = DataFrame.crosstab.__doc__


def _test():
import doctest
from pyspark.context import SparkContext
Expand Down

0 comments on commit 939b7c4

Please sign in to comment.