diff options
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 f037a000..e540f492 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 |