mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
Fix consider-using-tuple pylint warnings in core tests (#119463)
This commit is contained in:
@@ -615,7 +615,7 @@ async def test_async_remove_with_platform_update_finishes(hass: HomeAssistant) -
|
||||
# Add, remove, and make sure no updates
|
||||
# cause the entity to reappear after removal and
|
||||
# that we can add another entity with the same entity_id
|
||||
for entity in [entity1, entity2]:
|
||||
for entity in (entity1, entity2):
|
||||
update_called = asyncio.Event()
|
||||
update_done = asyncio.Event()
|
||||
await component.async_add_entities([entity])
|
||||
|
||||
Reference in New Issue
Block a user