Skip to content

Commit 11e9f0f

Browse files
authored
fix python style
1 parent 032fef0 commit 11e9f0f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/pyspark/sql/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5930,7 +5930,7 @@ def test_self_join_with_pandas(self):
59305930

59315931
@F.pandas_udf('key long, col string', F.PandasUDFType.GROUPED_MAP)
59325932
def dummy_pandas_udf(df):
5933-
return df[['key','col']]
5933+
return df[['key', 'col']]
59345934

59355935
df = self.spark.createDataFrame([Row(key=1, col='A'), Row(key=1, col='B'),
59365936
Row(key=2, col='C')])

0 commit comments

Comments
 (0)