Skip to content

Commit e1b947f

Browse files
committed
Style fixes
1 parent ce90ec8 commit e1b947f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

python/pyspark/ml/regression.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,9 @@ def __init__(self, featuresCol="features", labelCol="label", predictionCol="pred
286286
"""
287287
__init__(self, featuresCol="features", labelCol="label", predictionCol="prediction", \
288288
maxDepth=5, maxBins=32, minInstancesPerNode=1, minInfoGain=0.0, \
289-
maxMemoryInMB=256, cacheNodeIds=False, checkpointInterval=10, impurity="variance", \
290-
numTrees=20, featureSubsetStrategy="auto", seed=None)
289+
maxMemoryInMB=256, cacheNodeIds=False, checkpointInterval=10, \
290+
impurity="variance", numTrees=20, \
291+
featureSubsetStrategy="auto", seed=None)
291292
"""
292293
super(RandomForestRegressor, self).__init__()
293294
#: param for Criterion used for information gain calculation (case-insensitive).

0 commit comments

Comments
 (0)