Linting and tpyo

This commit is contained in:
Johan Bloemberg
2016-11-12 01:36:36 +01:00
parent 9363840042
commit e3c8c92198
2 changed files with 2 additions and 2 deletions

View File

@@ -71,6 +71,7 @@ class SerialReader(object):
yield self.telegram_parser.parse(telegram)
telegram = []
class AsyncSerialReader(SerialReader):
"""Serial reader using asyncio pyserial."""
@@ -110,4 +111,3 @@ class AsyncSerialReader(SerialReader):
# push new parsed telegram onto queue
queue.put_nowait(self.telegram_parser.parse(telegram))
telegram = []