diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2013-10-11 17:05:02 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2013-11-09 15:29:37 +0100 |
commit | 70b974b2a0c217fcb5addd6ea00d420e34ddc538 (patch) | |
tree | 45dc738ba42277a0744861ed69f9acfb43a303b2 /stdnum | |
parent | f122c882ba969846c94dc492016c9d7ef1085266 (diff) |
Remove unused import
Diffstat (limited to 'stdnum')
-rw-r--r-- | stdnum/meid.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/stdnum/meid.py b/stdnum/meid.py index 2ae8488..cd203de 100644 --- a/stdnum/meid.py +++ b/stdnum/meid.py @@ -173,7 +173,6 @@ def to_binary(number): """Convert the number to it's binary representation (without the check digit).""" import sys - import binascii number = compact(number, strip_check_digit=True) if sys.version > '3': # pragma: no cover (Python 2/3 specific code) return bytes.fromhex(number) |