Skip to content
Snippets Groups Projects
Commit 5ff08386 authored by Matthew LeGendre's avatar Matthew LeGendre
Browse files

Remove unnecessary blackslash for flake8

parent 73b46a92
No related branches found
No related tags found
No related merge requests found
...@@ -95,9 +95,9 @@ def cmp_externals(a, b): ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment