Skip to content

Commit d8136f8

Browse files
authored
Merge branch 'new-advanced-features' into copilot/sub-pr-39
2 parents 458b20f + cfec30a commit d8136f8

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

08-fsl-glm/mk_level2_fsf.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@
3939
from openfmri_utils import load_condkey, load_contrasts
4040

4141

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
4247
def parse_command_line(argv):
4348
parser = argparse.ArgumentParser(description='setup_subject')
4449

0 commit comments

Comments
 (0)