Pass empty set if parts.extras is None

This commit is contained in:
Devesh Kumar Singh 2020-05-22 02:27:09 +05:30
parent 8b5e1583f8
commit 2c5cab492c
3 changed files with 4 additions and 4 deletions

View File

@ -236,7 +236,7 @@ def install_req_from_editable(
install_options=options.get("install_options", []) if options else [],
global_options=options.get("global_options", []) if options else [],
hash_options=options.get("hashes", {}) if options else {},
extras=parts.extras,
extras=parts.extras if parts.extras else set(),
)
@ -399,7 +399,7 @@ def install_req_from_line(
global_options=options.get("global_options", []) if options else [],
hash_options=options.get("hashes", {}) if options else {},
constraint=constraint,
extras=parts.extras,
extras=parts.extras if parts.extras else set(),
)

View File

@ -110,7 +110,7 @@ class InstallRequirement(object):
global_options=None, # type: Optional[List[str]]
hash_options=None, # type: Optional[Dict[str, List[str]]]
constraint=False, # type: bool
extras=() # type: Optional[Iterable[str]]
extras=() # type: Iterable[str]
):
# type: (...) -> None
assert req is None or isinstance(req, Requirement), req

View File

@ -95,8 +95,8 @@ class RequirementTracker(object):
"""Add an InstallRequirement to build tracking.
"""
# Get the file to write information about this requirement.
assert req.link
# Get the file to write information about this requirement.
entry_path = self._entry_path(req.link)
# Try reading from the file. If it exists and can be read from, a build