Skip to content

Commit 56b0cf7

Browse files
committed
Rename 'line' to 'name' for better context.
1 parent af84998 commit 56b0cf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

importlib_metadata/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -538,11 +538,11 @@ def _read_files_egginfo_installed(self):
538538
return
539539

540540
ret = [
541-
(subdir / line)
541+
(subdir / name)
542542
.resolve()
543543
.relative_to(self.locate_file('').resolve())
544544
.as_posix()
545-
for line in text.splitlines()
545+
for name in text.splitlines()
546546
]
547547
return map('"{}"'.format, ret)
548548

0 commit comments

Comments
 (0)