diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2021-01-16 18:59:29 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-01-16 18:59:29 -0500 |
| commit | b994bc637e5817798f356bfd373011ab1d894216 (patch) | |
| tree | 04c28e900742178c49fe40aeea54c3b44990c3e3 /pkg_resources | |
| parent | 886dd34d565f3911819d4c16c6f16fe3cd65a39d (diff) | |
| download | python-setuptools-git-b994bc637e5817798f356bfd373011ab1d894216.tar.gz | |
Remove unused variable
Diffstat (limited to 'pkg_resources')
| -rw-r--r-- | pkg_resources/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py index 73f85459..c84f1dd9 100644 --- a/pkg_resources/__init__.py +++ b/pkg_resources/__init__.py @@ -1981,7 +1981,6 @@ def find_eggs_in_zip(importer, path_item, only=False): # don't yield nested distros return for subitem in metadata.resource_listdir(''): - lower = subitem.lower() if _is_egg_path(subitem): subpath = os.path.join(path_item, subitem) dists = find_eggs_in_zip(zipimport.zipimporter(subpath), subpath) |
