We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 458b20f + cfec30a commit d8136f8Copy full SHA for d8136f8
1 file changed
08-fsl-glm/mk_level2_fsf.py
@@ -39,6 +39,11 @@
39
from openfmri_utils import load_condkey, load_contrasts
40
41
42
+# Re-export public names from openfmri_utils without using a wildcard import.
43
+for _name in dir(_openfmri_utils):
44
+ if not _name.startswith('_'):
45
+ globals()[_name] = getattr(_openfmri_utils, _name)
46
+del _name, _openfmri_utils
47
def parse_command_line(argv):
48
parser = argparse.ArgumentParser(description='setup_subject')
49
0 commit comments