Remove unnecessary blackslash for flake8
This commit is contained in:
parent
73b46a92bc
commit
5ff08386af
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue