Skip to content

Commit d4818f3

Browse files
committed
fix python style
1 parent 53725b0 commit d4818f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/pyspark/mllib/recommendation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ class ALS(object):
6565
SPARK-3990: In Spark 1.1.x, we use Kryo serialization by default in
6666
PySpark. ALS does not work under this default setting. You can switch
6767
back to the default Java serialization by setting:
68-
68+
6969
spark.serializer=org.apache.spark.serializer.JavaSerializer
7070
7171
Please go to http://spark.apache.org/docs/latest/configuration.html
7272
for instructions on how to configure Spark.
7373
"""
74-
74+
7575
@classmethod
7676
def train(cls, ratings, rank, iterations=5, lambda_=0.01, blocks=-1):
7777
sc = ratings.context

0 commit comments

Comments
 (0)