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 37ff0eb commit 36d36fbCopy full SHA for 36d36fb
nibabel/tests/test_arraywriters.py
@@ -276,7 +276,7 @@ def test_slope_inter_castable():
276
for out_dtt in NUMERIC_TYPES:
277
for klass in (ArrayWriter, SlopeArrayWriter, SlopeInterArrayWriter):
278
arr = np.zeros((5,), dtype=in_dtt)
279
- _ = klass(arr, out_dtt) # no error
+ klass(arr, out_dtt) # no error
280
# Test special case of none finite
281
# This raises error for ArrayWriter, but not for the others
282
arr = np.array([np.inf, np.nan, -np.inf])
0 commit comments