Skip to content

Commit 5989360

Browse files
committed
Wrap long assert line in test_io.py for Black
The `matrix.nvals` -> `matrix.matrix_nvals` rename pushed the triple equality in `test_matrix_binfile_read_write` to 101 characters, exceeding the project's 100-char line length. Apply Black's suggested parenthesized wrap to bring it back under the limit.
1 parent 4fa5720 commit 5989360

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

suitesparse_graphblas/tests/test_io.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,9 @@ def test_matrix_binfile_read_write(tmp_path):
185185
),
186186
)
187187

188-
assert matrix.matrix_nvals(A) == matrix.matrix_nvals(B) == matrix.matrix_nvals(C)
188+
assert (
189+
matrix.matrix_nvals(A) == matrix.matrix_nvals(B) == matrix.matrix_nvals(C)
190+
)
189191

190192
is_eq = ffi.new("bool*")
191193
check_status(

0 commit comments

Comments
 (0)