We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c2a501 commit 73bae7eCopy full SHA for 73bae7e
nibabel/streamlines/tests/test_array_sequence.py
@@ -79,7 +79,7 @@ def test_creating_arraysequence_from_list(self):
79
# List of ndarrays.
80
N = 5
81
for ndim in range(1, N + 1):
82
- common_shape = tuple([SEQ_DATA['rng'].randint(1, 10) for _ in range(ndim - 1)])
+ common_shape = tuple(SEQ_DATA['rng'].randint(1, 10) for _ in range(ndim - 1))
83
data = generate_data(nb_arrays=5, common_shape=common_shape, rng=SEQ_DATA['rng'])
84
check_arr_seq(ArraySequence(data), data)
85
0 commit comments