Skip to content

Commit

Permalink
Remove unused WheelBuilder.no_clean
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidoul authored and chrahunt committed Nov 5, 2019
1 parent 7d59679 commit 92a9183
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/pip/_internal/commands/wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ def run(self, options, args):
preparer, wheel_cache,
build_options=options.build_options or [],
global_options=options.global_options or [],
no_clean=options.no_clean,
path_to_wheelnames=options.path_to_wheelnames
)
build_failures = wb.build(
Expand Down
2 changes: 0 additions & 2 deletions src/pip/_internal/wheel_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,6 @@ def __init__(
build_options=None, # type: Optional[List[str]]
global_options=None, # type: Optional[List[str]]
check_binary_allowed=None, # type: Optional[BinaryAllowedPredicate]
no_clean=False, # type: bool
path_to_wheelnames=None, # type: Optional[Union[bytes, Text]]
):
# type: (...) -> None
Expand All @@ -221,7 +220,6 @@ def __init__(
self.build_options = build_options or []
self.global_options = global_options or []
self.check_binary_allowed = check_binary_allowed
self.no_clean = no_clean
# path where to save built names of built wheels
self.path_to_wheelnames = path_to_wheelnames
# file names of built wheel names
Expand Down

0 comments on commit 92a9183

Please sign in to comment.