diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-12-12 01:43:51 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-12-29 03:09:54 +0100 |
commit | 9fe4ea478d22d7dfb2638eee8a8b2246f90af002 (patch) | |
tree | 9ba23eb577834c50448a6b853118e41d2277b5b3 /src/leap/bitmask/__init__.py | |
parent | 6d76a4cb2a534e8da4832def7c03ea4b830a97e2 (diff) |
[refactor] reorganize API
so that whitelisting doesn't have to peek into the data.
added more documentation and some tests stubs too.
Diffstat (limited to 'src/leap/bitmask/__init__.py')
-rw-r--r-- | src/leap/bitmask/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/leap/bitmask/__init__.py b/src/leap/bitmask/__init__.py index 20719d4..6fd6174 100644 --- a/src/leap/bitmask/__init__.py +++ b/src/leap/bitmask/__init__.py @@ -2,9 +2,6 @@ import sys import pkg_resources from ._version import get_versions -__version__ = get_versions()['version'] -del get_versions - if not getattr(sys, 'frozen', False): # FIXME: HACK for https://github.com/pypa/pip/issues/3 # Without this 'fix', there are resolution conflicts when pip installs at @@ -12,3 +9,6 @@ if not getattr(sys, 'frozen', False): # namespace from pypi. For instance: # 'pip install -e .' and 'pip install leap.common' pkg_resources.get_distribution('leap.bitmask') + +__version__ = get_versions()['version'] +del get_versions |