We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e7e15a commit aa45e75Copy full SHA for aa45e75
tools/checkspecs.py
@@ -8,8 +8,6 @@
8
import sys
9
import warnings
10
11
-from nipype.interfaces.base import BaseInterface
12
-
13
import black
14
15
@@ -182,6 +180,8 @@ def test_specs(self, uri):
182
180
Returns
183
181
-------
184
"""
+ from nipype.interfaces.base import BaseInterface
+
185
# get the names of all classes and functions
186
_, classes = self._parse_module(uri)
187
if not classes:
@@ -480,6 +480,7 @@ def check_modules(self):
480
481
482
if __name__ == "__main__":
483
+ os.environ["NIPYPE_NO_ET"] = "1"
484
package = "nipype"
485
ic = InterfaceChecker(package)
486
# Packages that should not be included in generated API docs.
0 commit comments