Skip to content

Commit aa2ad29

Browse files
committed
fix pyStyle2
1 parent 4e97a50 commit aa2ad29

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/pyspark/sql/dataframe.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1341,9 +1341,10 @@ def cov(self, col1, col2):
13411341
if not isinstance(col2, str):
13421342
raise ValueError("col2 should be a string.")
13431343
return self.df._jdf.stat().cov(col1, col2)
1344-
1344+
13451345
cov.__doc__ = DataFrame.cov.__doc__
13461346

1347+
13471348
def _test():
13481349
import doctest
13491350
from pyspark.context import SparkContext

0 commit comments

Comments
 (0)