From 1293f27595f19190b9bbe10cf94709cc1ba660c7 Mon Sep 17 00:00:00 2001 From: "Kali Kaneko (leap communications)" Date: Tue, 20 Sep 2016 19:54:10 -0400 Subject: [style] pep8 cleanup --- src/leap/bitmask/cli/webui.py | 2 +- src/leap/bitmask/core/_web.py | 4 +--- src/leap/bitmask/core/dispatcher.py | 3 --- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/leap/bitmask/cli/webui.py b/src/leap/bitmask/cli/webui.py index d4d5f782..c45f615b 100644 --- a/src/leap/bitmask/cli/webui.py +++ b/src/leap/bitmask/cli/webui.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# webui.py +# webui.py # Copyright (C) 2016 LEAP Encryption Access Project # # This program is free software: you can redistribute it and/or modify diff --git a/src/leap/bitmask/core/_web.py b/src/leap/bitmask/core/_web.py index c597d18e..ae223258 100644 --- a/src/leap/bitmask/core/_web.py +++ b/src/leap/bitmask/core/_web.py @@ -40,7 +40,6 @@ except ImportError: HAS_WEB_UI = False - class HTTPDispatcherService(service.Service): """ @@ -59,7 +58,7 @@ class HTTPDispatcherService(service.Service): else: log.msg('leap.bitmask_www not found, serving bitmask.core web ui') webdir = os.path.abspath( - pkg_resources.resource_filename('leap.bitmask.core', 'web')) + pkg_resources.resource_filename('leap.bitmask.core', 'web')) root = File(webdir) api = Api(CommandDispatcher(self._core)) @@ -83,7 +82,6 @@ class HTTPDispatcherService(service.Service): return {'web': status} - class Api(Resource): isLeaf = True diff --git a/src/leap/bitmask/core/dispatcher.py b/src/leap/bitmask/core/dispatcher.py index f3393a59..dba75b6a 100644 --- a/src/leap/bitmask/core/dispatcher.py +++ b/src/leap/bitmask/core/dispatcher.py @@ -407,7 +407,6 @@ class CommandDispatcher(object): d.addCallbacks(_format_result, _format_error) return d - def do_WEBUI(self, *parts): subcmd = parts[1] dispatch = self.subcommand_webui.dispatch @@ -429,7 +428,6 @@ class CommandDispatcher(object): d.addCallbacks(_format_result, _format_error) return d - def do_KEYS(self, *parts): dispatch = self.subcommand_keys.dispatch @@ -451,7 +449,6 @@ class CommandDispatcher(object): d.addCallbacks(_format_result, _format_error) return d - def dispatch(self, msg): cmd = msg[0] -- cgit v1.2.3