summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMatthew LeGendre <legendre1@llnl.gov>2016-10-21 13:17:23 -0700
committerMatthew LeGendre <legendre1@llnl.gov>2016-10-21 13:17:23 -0700
commit5ff08386af70818e48d81c1d49c0c6e373763c16 (patch)
treede090d2af4c1d725288c469653f14dd0ff152a66 /lib
parent73b46a92bcf0a415d5b4a3b29ca47df0d0544076 (diff)
downloadspack-5ff08386af70818e48d81c1d49c0c6e373763c16.tar.gz
spack-5ff08386af70818e48d81c1d49c0c6e373763c16.tar.bz2
spack-5ff08386af70818e48d81c1d49c0c6e373763c16.tar.xz
spack-5ff08386af70818e48d81c1d49c0c6e373763c16.zip
Remove unnecessary blackslash for flake8
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/concretize.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/concretize.py b/lib/spack/spack/concretize.py
index 3da5efc9fa..2351e2bfc9 100644
--- a/lib/spack/spack/concretize.py
+++ b/lib/spack/spack/concretize.py
@@ -95,9 +95,9 @@ class DefaultConcretizer(object):
not b.external and b.external_module):
# We're choosing between different providers, so
# 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]))
- 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]))
return index_of_a - index_of_b