Skip to content

Commit cf46710

Browse files
committed
[Style] remove commented-out statements
1 parent 89646f1 commit cf46710

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

mpython/core/mixin_types.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,7 @@ def _from_runtime(cls, dictobj: dict):
9292
else:
9393
dtype = _matlab_array_types()[type(dictobj["values__"])]
9494
indices = np.asarray(dictobj["indices__"], dtype=np.long)
95-
# print('from_matlab', indices.shape)
9695
values = np.asarray(dictobj["values__"], dtype=dtype).ravel()
97-
# indices = indices.reshape([ndim, -1])
9896
indices -= 1
9997
if indices.size == 0:
10098
indices = indices.reshape([0, ndim])
@@ -107,7 +105,6 @@ def _from_runtime(cls, dictobj: dict):
107105
# but this should probably be fixed in mpython_endpoint
108106
# as well.
109107
indices = indices.reshape([ndim, -1]).T
110-
# print(indices)
111108
return cls.from_coo(values, indices.T, size)
112109

113110

0 commit comments

Comments
 (0)