mirror of
https://github.com/home-assistant/core.git
synced 2025-11-14 05:20:17 +00:00
Removal of extraneous parenthesis (#33637)
This commit is contained in:
@@ -113,16 +113,14 @@ async def async_get_conditions(
|
||||
)
|
||||
|
||||
conditions.extend(
|
||||
(
|
||||
{
|
||||
**template,
|
||||
"condition": "device",
|
||||
"device_id": device_id,
|
||||
"entity_id": entry.entity_id,
|
||||
"domain": DOMAIN,
|
||||
}
|
||||
for template in templates
|
||||
)
|
||||
{
|
||||
**template,
|
||||
"condition": "device",
|
||||
"device_id": device_id,
|
||||
"entity_id": entry.entity_id,
|
||||
"domain": DOMAIN,
|
||||
}
|
||||
for template in templates
|
||||
)
|
||||
|
||||
return conditions
|
||||
|
||||
Reference in New Issue
Block a user