1
0
mirror of https://github.com/esphome/esphome.git synced 2025-06-14 22:36:58 +02:00

Disable ruff rule UP038 (#9029)

This commit is contained in:
J. Nick Koston 2025-06-08 18:15:46 -05:00 committed by GitHub
parent 4d044d4ac9
commit 245c89a6c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -126,6 +126,7 @@ ignore = [
"PLR0915", # Too many statements ({statements} > {max_statements})
"PLR2004", # Magic value used in comparison, consider replacing {value} with a constant variable
"PLW2901", # Outer {outer_kind} variable {name} overwritten by inner {inner_kind} target
"UP038", # https://github.com/astral-sh/ruff/issues/7871 https://github.com/astral-sh/ruff/pull/16681
]
[tool.ruff.lint.isort]