Skip to content

Commit 97c05fb

Browse files
committed
STY: black
1 parent 0094bed commit 97c05fb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

nipype/pipeline/engine/nodes.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,8 +293,12 @@ def output_dir(self):
293293
if self._hierarchy:
294294
outputdir = op.join(outputdir, *self._hierarchy.split("."))
295295
if self.parameterization:
296-
maxlen = 252 if str2bool(self.config["execution"]["parameterize_dirs"]) else 32
297-
params_str = [_parameterization_dir(str(p), maxlen) for p in self.parameterization]
296+
maxlen = (
297+
252 if str2bool(self.config["execution"]["parameterize_dirs"]) else 32
298+
)
299+
params_str = [
300+
_parameterization_dir(str(p), maxlen) for p in self.parameterization
301+
]
298302
outputdir = op.join(outputdir, *params_str)
299303

300304
self._output_dir = op.realpath(op.join(outputdir, self.name))

0 commit comments

Comments
 (0)