PEP 8 (I'm bored): core/io

This commit is contained in:
enkore 2014-10-14 16:50:08 +02:00
parent 2bba406485
commit 8db7b1d160

View File

@ -51,7 +51,9 @@ class StandaloneIO(IOHandler):
"""
n = -1
proto = [{"version":1,"click_events":True}, "[", "[]", ",[]",]
proto = [
{"version": 1, "click_events": True}, "[", "[]", ",[]",
]
def __init__(self, click_events, interval=1):
super().__init__()
@ -59,7 +61,6 @@ class StandaloneIO(IOHandler):
self.proto[0]['click_events'] = click_events
self.proto[0] = json.dumps(self.proto[0])
def read(self):
while True:
try: