Skip to content

Commit

Permalink
Added Matrix, SparseMatrix to __all__ list in linalg.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbradley committed Apr 28, 2015
1 parent 28b1af7 commit deb51a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/pyspark/mllib/linalg.py
Expand Up @@ -39,7 +39,8 @@
IntegerType, ByteType


__all__ = ['Vector', 'DenseVector', 'SparseVector', 'Vectors', 'DenseMatrix', 'Matrices']
__all__ = ['Vector', 'DenseVector', 'SparseVector', 'Vectors',
'Matrix', 'DenseMatrix', 'SparseMatrix', 'Matrices']


if sys.version_info[:2] == (2, 7):
Expand Down

0 comments on commit deb51a2

Please sign in to comment.