"tests/vscode:/vscode.git/clone" did not exist on "ab50eb9b4e06bbd850630fde71aeb8ee71410ac1"
Unverified Commit d24a4533 authored by Mario Geiger's avatar Mario Geiger Committed by GitHub
Browse files

Update storage.py

parent 9586b8be
......@@ -277,7 +277,7 @@ class SparseStorage(object):
idx = self.sparse_size(1) * self.row() + self.col()
row = idx / num_cols
row = idx // num_cols
col = idx % num_cols
return SparseStorage(row=row, rowptr=None, col=col, value=self._value,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment