Merge pull request #646 from forslund/pep-8-fix

Fix PEP-8 issues in dev branch
pull/645/head
Augusto Monteiro 2017-04-08 02:22:17 -07:00 committed by GitHub
commit 6e5f060257
3 changed files with 3 additions and 3 deletions

View File

@ -141,7 +141,7 @@ def connect():
def main():
global ws
global loop
lock = PIDLock( "voice" )
lock = PIDLock("voice")
ws = WebsocketClient()
tts.init(ws)
ConfigurationManager.init(ws)

View File

@ -33,7 +33,7 @@ settings = {
def main():
import tornado.options
lock = Lock( "service" )
lock = Lock("service")
tornado.options.parse_command_line()
config = ConfigurationManager.get().get("websocket")

View File

@ -147,7 +147,7 @@ def watch_skills():
def main():
global ws
lock = Lock( 'skills' ) # prevent multiply instances of this service
lock = Lock('skills') # prevent multiply instances of this service
ws = WebsocketClient()
ConfigurationManager.init(ws)