Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/stdnum/meid.py
diff options
context:
space:
mode:
Diffstat (limited to 'stdnum/meid.py')
-rw-r--r--stdnum/meid.py1
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)