mirror of
https://github.com/home-assistant/core.git
synced 2025-12-25 05:26:47 +00:00
Enable Ruff B905 (#114197)
This commit is contained in:
@@ -610,7 +610,9 @@ class DynamicServiceIntentHandler(IntentHandler):
|
||||
|
||||
# Handle service calls in parallel, noting failures as they occur.
|
||||
failed_results: list[IntentResponseTarget] = []
|
||||
for state, service_coro in zip(states, asyncio.as_completed(service_coros)):
|
||||
for state, service_coro in zip(
|
||||
states, asyncio.as_completed(service_coros), strict=False
|
||||
):
|
||||
target = IntentResponseTarget(
|
||||
type=IntentResponseTargetType.ENTITY,
|
||||
name=state.name,
|
||||
|
||||
Reference in New Issue
Block a user