diff options
author | Kali Kaneko <kali@leap.se> | 2017-08-14 18:07:37 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-08-14 18:10:50 -0400 |
commit | abf688c7d643b89a1001a9f7c7ff24a4a3dab42c (patch) | |
tree | 215dde5eda1db9f82c472cc4144a3deab1d5295c /src/leap/bitmask/gui/app2.py | |
parent | aff9d2519e71e346459f697c9c1541acc60e9e52 (diff) |
[style] pep8
Diffstat (limited to 'src/leap/bitmask/gui/app2.py')
-rw-r--r-- | src/leap/bitmask/gui/app2.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/leap/bitmask/gui/app2.py b/src/leap/bitmask/gui/app2.py index f037a00..e540f49 100644 --- a/src/leap/bitmask/gui/app2.py +++ b/src/leap/bitmask/gui/app2.py @@ -17,8 +17,8 @@ """ Main entrypoint for the Bitmask Qt GUI. -It just launches a webview browser that runs the local web-ui served by bitmaskd -when the web service is running. +It just launches a webview browser that runs the local web-ui served by +bitmaskd when the web service is running. """ import os @@ -36,7 +36,6 @@ import psutil from leap.bitmask.core.launcher import run_bitmaskd, pid from leap.common.config import get_path_prefix -#from leap.bitmask.gui import app_rc DEBUG = os.environ.get("DEBUG", False) @@ -83,7 +82,6 @@ class BrowserWindow(object): webview.create_window('Bitmask', self.url) - def loadPage(self, web_page): self.load(url) @@ -101,7 +99,6 @@ class BrowserWindow(object): print('[bitmask] shutting down gui...') - def launch_gui(): global bitmaskd global browser |