Fix flake8 error

Forgot to rename one var...
This commit is contained in:
Michał Sochoń 2018-03-26 00:24:36 +02:00
parent b0d44c7084
commit 980fc9bdc3

View file

@ -72,8 +72,8 @@ def fix_requirements(f):
# find and remove pkg-resources==0.0.0 # find and remove pkg-resources==0.0.0
# which is automatically added by broken pip package under Debian # which is automatically added by broken pip package under Debian
requirements = [ requirements = [
requirement for requirement in requirements req for req in requirements
if requirement.value != b'pkg-resources==0.0.0\n' if req.value != b'pkg-resources==0.0.0\n'
] ]
for requirement in sorted(requirements): for requirement in sorted(requirements):