mirror of
https://github.com/home-assistant/core.git
synced 2025-08-13 17:45:19 +02:00
fix generator
This commit is contained in:
@@ -335,8 +335,8 @@ class DeviceTracker(object):
|
|||||||
|
|
||||||
This method must be run in the event loop.
|
This method must be run in the event loop.
|
||||||
"""
|
"""
|
||||||
entity_ids = (dev.entity_id for dev in self.devices.values()
|
entity_ids = [dev.entity_id for dev in self.devices.values()
|
||||||
if dev.track)
|
if dev.track]
|
||||||
|
|
||||||
self.group = get_component('group')
|
self.group = get_component('group')
|
||||||
self.group.async_set_group(
|
self.group.async_set_group(
|
||||||
|
Reference in New Issue
Block a user