我正在尝试使用Python 3.7中的dataclasses
功能,但在单词'hue'下得到此警告:
'hue' used before definition
Python (use-before-def)
我想这是一个小小的警告。我尝试了python扩展程序提供的多个linters,但是它们都不起作用。
from dataclasses import dataclass
@dataclass
class Color:
hue: int
lightness: float = 2.0
c = Color(2)
是否可以启用语法检查等功能,但避免收到此警告?
使用pep8警告
使用pylint或mypy警告