Remove unnecessary blackslash for flake8

This commit is contained in:
Matthew LeGendre 2016-10-21 13:17:23 -07:00
parent 73b46a92bc
commit 5ff08386af

View file

@ -95,9 +95,9 @@ def cmp_externals(a, b):
not b.external and b.external_module): not b.external and b.external_module):
# We're choosing between different providers, so # We're choosing between different providers, so
# maintain order from provider sort # maintain order from provider sort
index_of_a = next(i for i in range(0, len(candidates)) \ index_of_a = next(i for i in range(0, len(candidates))
if a.satisfies(candidates[i])) if a.satisfies(candidates[i]))
index_of_b = next(i for i in range(0, len(candidates)) \ index_of_b = next(i for i in range(0, len(candidates))
if b.satisfies(candidates[i])) if b.satisfies(candidates[i]))
return index_of_a - index_of_b return index_of_a - index_of_b