Skip to content
Snippets Groups Projects
Commit 37cb8421 authored by Jameson Rollins's avatar Jameson Rollins
Browse files

make load_module function public

This function is useful, so no reason to hide it.
parent b50ea883
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ from .plot import plot_noise ...@@ -14,7 +14,7 @@ from .plot import plot_noise
logger = logging.getLogger('gwinc') logger = logging.getLogger('gwinc')
def _load_module(name_or_path): def load_module(name_or_path):
"""Load module from name or path. """Load module from name or path.
Return loaded module and module path. Return loaded module and module path.
...@@ -83,7 +83,7 @@ def load_budget(name_or_path, freq=None): ...@@ -83,7 +83,7 @@ def load_budget(name_or_path, freq=None):
modname = 'gwinc.ifo.'+name_or_path modname = 'gwinc.ifo.'+name_or_path
logger.info("loading module {}...".format(modname)) logger.info("loading module {}...".format(modname))
mod, modpath = _load_module(modname) mod, modpath = load_module(modname)
Budget = getattr(mod, bname) Budget = getattr(mod, bname)
ifopath = os.path.join(modpath, 'ifo.yaml') ifopath = os.path.join(modpath, 'ifo.yaml')
if not ifo and os.path.exists(ifopath): if not ifo and os.path.exists(ifopath):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment