Commit 169639bd authored by Jason R. Coombs's avatar Jason R. Coombs

Remove redundant 'list'

parent ac3e41e6
......@@ -130,11 +130,11 @@ class Wheel(object):
return str(req)
install_requires = list(sorted(map(raw_req, dist.requires())))
extras_require = {
extra: list(sorted(
extra: sorted(
req
for req in map(raw_req, dist.requires((extra,)))
if req not in install_requires
))
)
for extra in dist.extras
}
egg_info = os.path.join(destination_eggdir, 'EGG-INFO')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment