Skip to content

Commit 712e0dd

Browse files
mnoergaardmgxd
andauthored
FIX: update estimate_file outputs to f string
Co-authored-by: Mathias Goncalves <[email protected]>
1 parent 27f1eae commit 712e0dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/freesurfer/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ def _list_outputs(self):
521521
if self.inputs.save_residual:
522522
outputs["error_file"] = os.path.join(glmdir, f"eres.{ext}")
523523
if self.inputs.save_estimate:
524-
outputs["estimate_file"] = os.path.join(glmdir, "yhat.{ext}")
524+
outputs["estimate_file"] = os.path.join(glmdir, f"yhat.{ext}")
525525
if any((self.inputs.mrtm1, self.inputs.mrtm2, self.inputs.logan)):
526526
outputs["bp_file"] = os.path.join(glmdir, f"bp.{ext}")
527527
if self.inputs.mrtm1:

0 commit comments

Comments
 (0)