Skip to content

Commit 2af042f

Browse files
STY: Apply ruff/Pyflakes rule F523
F523 `.format` call has unused arguments
1 parent 3895bb6 commit 2af042f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: nipype/pipeline/engine/nodes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1381,7 +1381,7 @@ def _run_interface(self, execute=True, updatehash=False):
13811381
)
13821382
)
13831383
except Exception as msg:
1384-
result.runtime.stderr = "%s\n\n%s".format(
1384+
result.runtime.stderr = "{}\n\n{}".format(
13851385
getattr(result.runtime, "stderr", ""), msg
13861386
)
13871387
_save_resultfile(

0 commit comments

Comments
 (0)