Skip to content

Commit ba2c9ec

Browse files
STY: Apply ruff/Pylint rule PLE1205
PLE1205 Too many arguments for `logging` format string
1 parent 8bcc120 commit ba2c9ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/workbench/metric.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def _format_arg(self, opt, spec, val):
164164
if opt == "valid_roi_out" and val:
165165
# generate a filename and add it to argstr
166166
roi_out = self._gen_filename(self.inputs.in_file, suffix="_roi")
167-
iflogger.info("Setting roi output file as", roi_out)
167+
iflogger.info("Setting roi output file as %s", roi_out)
168168
spec.argstr += " " + roi_out
169169
return super()._format_arg(opt, spec, val)
170170

0 commit comments

Comments
 (0)