```Py for name, func in [(name, f) for name, f in mod.__dict__.items() if callable(f)]: ``` Includes all classes as they are callable too. Should probably be: ```Py for name, obj in inspect.getmembers(module, inspect.isfunction): ```