我正在使用 Pylint 检查一个模块。该项目具有以下结构:
/builder
__init__.py
entity.py
product.py
在产品中,我像这样导入实体:
from entity import Entity
但皮林特感叹:
************* Module builder.product
W: 5,0: Relative import 'entity', should be 'builder.entity'
但是from builder.entity import Entity
不识别包,from ..builder.entity import Entity
也不起作用。皮林特在抱怨什么?谢谢