remove flask app

This commit is contained in:
j 2014-08-09 18:33:59 +02:00
commit abf2bbf6a8
12 changed files with 70 additions and 71 deletions

View file

@ -13,10 +13,9 @@ logger = logging.getLogger('oml.websocket')
class Tasks(Thread):
def __init__(self, app):
def __init__(self):
self.q = Queue()
self.connected = True
self._app = app
Thread.__init__(self)
self.daemon = True
self.start()