Skip to content

Commit

Permalink
Rename 'line' to 'name' for better context.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Apr 22, 2023
1 parent af84998 commit 56b0cf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions importlib_metadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,11 +538,11 @@ def _read_files_egginfo_installed(self):
return

ret = [
(subdir / line)
(subdir / name)
.resolve()
.relative_to(self.locate_file('').resolve())
.as_posix()
for line in text.splitlines()
for name in text.splitlines()
]
return map('"{}"'.format, ret)

Expand Down

0 comments on commit 56b0cf7

Please sign in to comment.