summaryrefslogtreecommitdiff
path: root/pkg_resources
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-01-16 18:59:29 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-01-16 18:59:29 -0500
commitb994bc637e5817798f356bfd373011ab1d894216 (patch)
tree04c28e900742178c49fe40aeea54c3b44990c3e3 /pkg_resources
parent886dd34d565f3911819d4c16c6f16fe3cd65a39d (diff)
downloadpython-setuptools-git-b994bc637e5817798f356bfd373011ab1d894216.tar.gz
Remove unused variable
Diffstat (limited to 'pkg_resources')
-rw-r--r--pkg_resources/__init__.py1
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)