This commit is contained in:
hauntsaninja 2022-08-12 18:48:15 -07:00
parent b9ec5ddc29
commit 4d13842ec6
2 changed files with 2 additions and 1 deletions

View File

@ -40,6 +40,7 @@ ignore_missing_imports = True
disallow_untyped_defs = True
disallow_any_generics = True
warn_unused_ignores = True
no_implicit_optional = True
[mypy-pip._vendor.*]
ignore_errors = True

View File

@ -1,5 +1,5 @@
import hashlib
from typing import TYPE_CHECKING, BinaryIO, Dict, Iterable, List
from typing import TYPE_CHECKING, BinaryIO, Dict, Iterable, List, Optional
from pip._internal.exceptions import HashMismatch, HashMissing, InstallationError
from pip._internal.utils.misc import read_chunks