Skip to content

Commit b9f97a3

Browse files
committed
Fix test
1 parent 1e1bd0f commit b9f97a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/mllib/clustering.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class KMeansModel(object):
5252
>>> model.predict(sparse_data[2]) == model.predict(sparse_data[3])
5353
True
5454
>>> type(model.clusterCenters)
55-
list
55+
<type 'list'>
5656
"""
5757
def __init__(self, centers):
5858
self.centers = centers

0 commit comments

Comments
 (0)