Skip to content

Commit a87ced5

Browse files
committed
Use getproperty always
1 parent 4f8f592 commit a87ced5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scipy.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function scipysparse()
1010
end
1111

1212
function PyObject(S::SparseMatrixCSC)
13-
scipysparse()["csc_matrix"]((S.nzval, S.rowval .- 1, S.colptr .- 1), shape=size(S))
13+
scipysparse().csc_matrix((S.nzval, S.rowval .- 1, S.colptr .- 1), shape = size(S))
1414
end
1515

1616
function convert(::Type{SparseMatrixCSC}, o::PyObject)

0 commit comments

Comments
 (0)