Skip to content

Commit 0d68323

Browse files
committed
fix style according to pycodestyle
1 parent 513323f commit 0d68323

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/matrix/matrix_mod2_dense.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2271,10 +2271,10 @@ cdef class Matrix_mod2_dense(matrix_dense.Matrix_dense): # dense or sparse
22712271
row_start += 1
22722272
while row_start < row_end and mzd_read_bit(A._entries, row_end, largest_col):
22732273
row_end -= 1
2274-
if row_start < row_end: # swap row
2274+
if row_start < row_end: # swap row
22752275
A.swap_rows_c(row_start, row_end)
22762276
row_swapped[row_start], row_swapped[row_end] = row_swapped[row_end], row_swapped[row_start]
2277-
partition_start = partition_end + 1 # for next partition
2277+
partition_start = partition_end + 1 # for next partition
22782278

22792279
for row in range(A._nrows - 1):
22802280
if mzd_read_bit(A._entries, row, largest_col) != mzd_read_bit(A._entries, row + 1, largest_col):

0 commit comments

Comments
 (0)