Skip to content

Commit 00755e0

Browse files
committed
fix: passing string when nibabel object is required
1 parent bf488e8 commit 00755e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

niworkflows/interfaces/plotting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def _run_interface(self, runtime):
105105
),
106106
tr=(
107107
self.inputs.tr if isdefined(self.inputs.tr) else
108-
_get_tr(self.inputs.in_func)
108+
_get_tr(input_data)
109109
),
110110
confounds=dataframe,
111111
units={"outliers": "%", "FD": "mm"},

0 commit comments

Comments
 (0)