Skip to content

Commit 5d9adbb

Browse files
committed
sty: run black
1 parent e90e75b commit 5d9adbb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

nipype/interfaces/base/core.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,9 @@ def set_default_terminal_output(cls, output_type):
624624
else:
625625
raise AttributeError("Invalid terminal output_type: %s" % output_type)
626626

627-
def __init__(self, command=None, terminal_output=None, write_cmdline=False, **inputs):
627+
def __init__(
628+
self, command=None, terminal_output=None, write_cmdline=False, **inputs
629+
):
628630
super(CommandLine, self).__init__(**inputs)
629631
self._environ = None
630632
# Set command. Input argument takes precedence
@@ -733,7 +735,9 @@ def _run_interface(self, runtime, correct_return_codes=(0,)):
733735
try:
734736
runtime.cmdline = self.cmdline
735737
except Exception as exc:
736-
raise RuntimeError("Error raised when interpolating the command line") from exc
738+
raise RuntimeError(
739+
"Error raised when interpolating the command line"
740+
) from exc
737741

738742
runtime.stdout = None
739743
runtime.stderr = None

0 commit comments

Comments
 (0)