We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11f09ba commit a00f772Copy full SHA for a00f772
dmriprep/utils/misc.py
@@ -9,5 +9,5 @@ def check_deps(workflow):
9
return sorted(
10
(node.interface.__class__.__name__, node.interface._cmd)
11
for node in workflow._get_all_nodes()
12
- if (hasattr(node.interface, '_cmd') and
13
- which(node.interface._cmd.split()[0]) is None))
+ if (hasattr(node.interface, '_cmd')
+ and which(node.interface._cmd.split()[0]) is None))
setup.cfg
@@ -105,8 +105,8 @@ exclude=
105
*build/
106
*/.afq/*
107
docs/
108
-select = C,E,F,W,B,B950
109
-ignore = N802,N806,W504,E203
+ignore =
+ W503
110
111
[tool:pytest]
112
norecursedirs = .* _*
0 commit comments