Found by @TheRealHaoLiu What happens: ```py from foo import module_object settings.load_file(module_object) ``` ``` NOTHING ``` Expected: ```py from foo import module_object settings.load_file(module_object) ``` ``` TypeError: path must be a `str` not a `module` ``` Alternatives for discussion: - Should `load_file` take a `module` and internally call `inpect.getfile` to figure out the real path? - Should a `load_module` be added?