diff options
Diffstat (limited to 'coverage/numbits.py')
-rw-r--r-- | coverage/numbits.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/coverage/numbits.py b/coverage/numbits.py index 7205b9f1..7a17fc56 100644 --- a/coverage/numbits.py +++ b/coverage/numbits.py @@ -15,7 +15,9 @@ the future. Use these functions to work with those binary blobs of data. """ import json -from coverage.backward import byte_to_int, bytes_to_ints, binary_bytes, zip_longest +from itertools import zip_longest + +from coverage.backward import byte_to_int, bytes_to_ints, binary_bytes from coverage.misc import contract, new_contract def _to_blob(b): |