diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-02-07 10:18:38 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-02-23 00:40:41 +0100 |
commit | 9d7de357a114812c0ed1e04b97ef59b41a40fa47 (patch) | |
tree | 22118a7b418872cceee01fb4df923a86fdc1557b /src/leap/bitmask/vpn/manager.py | |
parent | dd7c63bd9ca5570d9a924d131c4786ffd15e2d2d (diff) |
[style] pep8
Diffstat (limited to 'src/leap/bitmask/vpn/manager.py')
-rw-r--r-- | src/leap/bitmask/vpn/manager.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/leap/bitmask/vpn/manager.py b/src/leap/bitmask/vpn/manager.py index abadc00..bf511b3 100644 --- a/src/leap/bitmask/vpn/manager.py +++ b/src/leap/bitmask/vpn/manager.py @@ -27,9 +27,8 @@ from ._config import _TempEIPConfig, _TempProviderConfig from .constants import IS_WIN - # TODO this is very badly named. There is another class that is called -# manager. This +# manager. This class VPNManager(object): @@ -81,7 +80,6 @@ class VPNManager(object): result = self._vpn.stop(False, False) # TODO review params return result - @property def status(self): return self._vpn.status @@ -90,7 +88,6 @@ class VPNManager(object): def traffic_status(self): return self._vpn.traffic_status - def _get_management_location(self): """ Return a tuple with the host (socket) and port to be used for VPN. |