PEP8 styling fix for State
This commit is contained in:
parent
659f185252
commit
1ba7d583cc
1 changed files with 1 additions and 1 deletions
|
@ -290,7 +290,7 @@ class Bus(object):
|
|||
class State(object):
|
||||
""" Object to represent a state within the state machine. """
|
||||
|
||||
__slots__ = ['entity_id','state','attributes','last_changed']
|
||||
__slots__ = ['entity_id', 'state', 'attributes', 'last_changed']
|
||||
|
||||
def __init__(self, entity_id, state, attributes=None, last_changed=None):
|
||||
self.entity_id = entity_id
|
||||
|
|
Loading…
Add table
Reference in a new issue