Skip to content

Commit 0a31845

Browse files
committed
Explode the record row for readability
1 parent dd50a03 commit 0a31845

File tree

1 file changed

+2
-2
lines changed
  • src/pip/_internal/operations/install

1 file changed

+2
-2
lines changed

src/pip/_internal/operations/install/wheel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@ def _normalized_outrows(outrows):
249249
# For additional background, see--
250250
# https://github.com/pypa/pip/issues/5868
251251
return sorted(
252-
(ensure_str(row[0], encoding='utf-8'), row[1], str(row[2]))
253-
for row in outrows
252+
(ensure_str(record_path, encoding='utf-8'), hash_, str(size))
253+
for record_path, hash_, size in outrows
254254
)
255255

256256

0 commit comments

Comments
 (0)