Skip to content

Commit 56a9b80

Browse files
STY: Apply ruff/Pylint rule PLE1205
PLE1205 Too many arguments for `logging` format string
1 parent 5380f89 commit 56a9b80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fmriprep/interfaces/workbench.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def _format_arg(self, opt, spec, val):
292292
if opt == 'valid_roi_out' and val:
293293
# generate a filename and add it to argstr
294294
roi_out = self._gen_filename(self.inputs.in_file, suffix='_roi')
295-
iflogger.info('Setting roi output file as', roi_out)
295+
iflogger.info('Setting roi output file as %s', roi_out)
296296
spec.argstr += ' ' + roi_out
297297
return super()._format_arg(opt, spec, val)
298298

0 commit comments

Comments
 (0)