diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-05 06:31:02 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-05 12:55:16 -0500 |
commit | 4ea850a695e3ab8e42d400dc9dceaebea9246081 (patch) | |
tree | 0f047e4db3087212060eb54e95e4adf8760e6fb8 /coverage/numbits.py | |
parent | 097e13177ecc97638426a8e3a276ddeaae5422a1 (diff) | |
download | python-coveragepy-git-4ea850a695e3ab8e42d400dc9dceaebea9246081.tar.gz |
mypy: use __future__ uniformly in checked files
Diffstat (limited to 'coverage/numbits.py')
-rw-r--r-- | coverage/numbits.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/coverage/numbits.py b/coverage/numbits.py index 99d53878..26e5c272 100644 --- a/coverage/numbits.py +++ b/coverage/numbits.py @@ -13,13 +13,15 @@ in the blobs should be considered an implementation detail that might change in the future. Use these functions to work with those binary blobs of data. """ + +from __future__ import annotations + import json +import sqlite3 from itertools import zip_longest from typing import Iterable, List -import sqlite3 - def nums_to_numbits(nums: Iterable[int]) -> bytes: """Convert `nums` into a numbits. |