Fix consider-using-tuple pylint warnings in component tests (#119464)
* Fix consider-using-tuple pylint warnings in component tests * Apply su Co-authored-by: Michael <35783820+mib1185@users.noreply.github.com> --------- Co-authored-by: Michael <35783820+mib1185@users.noreply.github.com>
This commit is contained in:
parent
e065c70969
commit
fb1b0058ee
58 changed files with 158 additions and 167 deletions
|
@ -65,7 +65,7 @@ async def setup_entry(hass, devices):
|
|||
EVENT_LIGHTING_1,
|
||||
[
|
||||
{"type": "command", "subtype": subtype}
|
||||
for subtype in [
|
||||
for subtype in (
|
||||
"Off",
|
||||
"On",
|
||||
"Dim",
|
||||
|
@ -74,7 +74,7 @@ async def setup_entry(hass, devices):
|
|||
"All/group On",
|
||||
"Chime",
|
||||
"Illegal command",
|
||||
]
|
||||
)
|
||||
],
|
||||
)
|
||||
],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue