标签: python
我有一个自定义包,我遇到了导入问题。模块结构如下:
- BaseModule - Exchange - Communications - DeviceComm
我正在尝试将Exchange模块导入DeviceComm模块。我该怎么做?
Exchange
DeviceComm
答案 0 :(得分:1)
使用Intra-package references:
from .. import Exchange