blob: 51c57aa161c931a78ed0ba3ca72ad9962c498673 [file] [log] [blame]
def import_module(name, path):
import importlib.util
spec = importlib.util.spec_from_file_location(name, path)
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)
return module