From 1ba7d583cccc6d4a2f2b2fc297d9451d396c3220 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 22 Jan 2014 19:41:51 -0800 Subject: [PATCH] PEP8 styling fix for State --- homeassistant/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/__init__.py b/homeassistant/__init__.py index 6275b501f09..ec35228ece0 100644 --- a/homeassistant/__init__.py +++ b/homeassistant/__init__.py @@ -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