我使用importlib.import_module动态加载
Python模块,如下所示
def load_module(mod_name: str) -> ???: return importlib.import_module(mod_name)
有人可以告诉我模块类型的正确类型注释是什么.打字模块不包含一个,我在其他地方找不到答案.
解决方法
你在找
types.ModuleType
.