mirror of
https://github.com/home-assistant/core.git
synced 2025-07-29 18:28:14 +02:00
Enable collections-named-tuple (PYI024) rule in ruff (#123019)
This commit is contained in:
@ -20,7 +20,7 @@ except ImportError:
|
||||
|
||||
|
||||
RE_ASCII = re.compile(r"\033\[[^m]*m")
|
||||
Error = namedtuple("Error", ["file", "line", "col", "msg", "skip"])
|
||||
Error = namedtuple("Error", ["file", "line", "col", "msg", "skip"]) # noqa: PYI024
|
||||
|
||||
PASS = "green"
|
||||
FAIL = "bold_red"
|
||||
|
Reference in New Issue
Block a user