Skip to content

Commit a36b1c7

Browse files
authored
Merge pull request #860 from bcdarwin/fix-test_proxy_api
test_proxy_api: replace nonexistent `extend` method call on a tuple with `+=`
2 parents 50abcb3 + af56a09 commit a36b1c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nibabel/tests/test_proxy_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ class TestNifti1ProxyAPI(TestSpm99AnalyzeProxyAPI):
345345
data_dtypes = (np.uint8, np.int16, np.int32, np.float32, np.complex64, np.float64,
346346
np.int8, np.uint16, np.uint32, np.int64, np.uint64, np.complex128)
347347
if have_binary128():
348-
data_dtypes.extend(np.float128, np.complex256)
348+
data_dtypes += (np.float128, np.complex256)
349349

350350

351351
class TestMGHAPI(TestAnalyzeProxyAPI):

0 commit comments

Comments
 (0)