Skip to content

Commit 37aa9f8

Browse files
JohnCremonaorlitzky
authored andcommitted
#38960: fix lint issue
1 parent 34ffbd9 commit 37aa9f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/libs/eclib/mat.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,15 +221,15 @@ cdef class Matrix:
221221
Ts = MatrixSpace(ZZ, n, sparse=sparse).zero_matrix().__copy__()
222222
for i from 0 <= i < n:
223223
for j from 0 <= j < n:
224-
Mij = Integer(self.M.sub(i+1,j+1));
224+
Mij = Integer(self.M.sub(i+1,j+1))
225225
if Mij:
226226
Ts.set_unsafe(i, j, Mij)
227227
return Ts
228228
else:
229229
Td = MatrixSpace(ZZ, n, sparse=sparse).zero_matrix().__copy__()
230230
for i from 0 <= i < n:
231231
for j from 0 <= j < n:
232-
Mij = Integer(self.M.sub(i+1,j+1));
232+
Mij = Integer(self.M.sub(i+1,j+1))
233233
if Mij:
234234
Td.set_unsafe(i, j, Mij)
235235
return Td

0 commit comments

Comments
 (0)