Skip to content

Commit c7877f2

Browse files
committed
Remove change in list and wheel
1 parent 4713c6d commit c7877f2

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/pip/_internal/commands/list.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,7 @@ def handle_pip_version_check(self, options: Values) -> None:
143143
super().handle_pip_version_check(options)
144144

145145
def _build_package_finder(
146-
self,
147-
options: Values,
148-
session: PipSession,
146+
self, options: Values, session: PipSession
149147
) -> PackageFinder:
150148
"""
151149
Create a package finder appropriate to this list command.

src/pip/_internal/commands/wheel.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,7 @@ def add_options(self) -> None:
104104
def run(self, options: Values, args: list[str]) -> int:
105105
session = self.get_default_session(options)
106106

107-
finder = self._build_package_finder(
108-
options=options,
109-
session=session,
110-
)
107+
finder = self._build_package_finder(options, session)
111108

112109
options.wheel_dir = normalize_path(options.wheel_dir)
113110
ensure_dir(options.wheel_dir)

0 commit comments

Comments
 (0)