Skip to content

Commit 00a10d8

Browse files
committed
BF: Erroneous get_data call
Introduced in aa061ae
1 parent 26c3510 commit 00a10d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/dipy/tensors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def tensor_fitting(data, bvals, bvecs, mask_file=None):
4747
-------
4848
TensorFit object, affine
4949
"""
50-
img = nb.load(in_file).get_data()
50+
img = nb.load(in_file)
5151
data = img.get_data()
5252
affine = img.get_affine()
5353
if mask_file is not None:

0 commit comments

Comments
 (0)