Skip to content

Commit

Permalink
🤖 Format .jl files (#47)
Browse files Browse the repository at this point in the history
Co-authored-by: tmigot <[email protected]>
  • Loading branch information
github-actions[bot] and tmigot authored Jul 1, 2024
1 parent 8133dd1 commit b669cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coo_types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -270,5 +270,5 @@ import Base.similar
function Base.similar(S::SparseMatrixCOO)
newcol = copy(columns(S))
newrow = copy(rows(S))
SparseMatrixCOO(size(S,1), size(S,2), newrow, newcol, similar(nonzeros(S)))
SparseMatrixCOO(size(S, 1), size(S, 2), newrow, newcol, similar(nonzeros(S)))
end

0 comments on commit b669cbe

Please sign in to comment.