mirror of
https://github.com/home-assistant/core.git
synced 2025-07-14 16:57:10 +00:00
removed unnecessary properties.
This commit is contained in:
parent
88e7967a7d
commit
019af42e94
@ -67,19 +67,10 @@ class Scene(Entity):
|
|||||||
def should_poll(self):
|
def should_poll(self):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
@property
|
|
||||||
def name(self):
|
|
||||||
raise NotImplementedError
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def state(self):
|
def state(self):
|
||||||
return STATE
|
return STATE
|
||||||
|
|
||||||
@property
|
|
||||||
def entity_ids(self):
|
|
||||||
""" Entity IDs part of this scene. """
|
|
||||||
return None
|
|
||||||
|
|
||||||
def activate(self):
|
def activate(self):
|
||||||
""" Activates scene. Tries to get entities into requested state. """
|
""" Activates scene. Tries to get entities into requested state. """
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
Loading…
x
Reference in New Issue
Block a user