Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix style
  • Loading branch information
zero323 committed Mar 25, 2017
commit feb6af9c4b2734d29f0f29370792d0d2efbc56ef
3 changes: 2 additions & 1 deletion python/pyspark/ml/fpm.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ class HasItemsCol(Params):
Mixin for param itemsCol: items column name.
"""

itemsCol = Param(Params._dummy(), "itemsCol", "items column name.", typeConverter=TypeConverters.toString)
itemsCol = Param(Params._dummy(), "itemsCol",
"items column name.", typeConverter=TypeConverters.toString)

def __init__(self):
super(HasItemsCol, self).__init__()
Expand Down