summaryrefslogtreecommitdiff
path: root/lib/spack/spack/concretize.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/spack/spack/concretize.py')
-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 a69404753b..34773b5017 100644
--- a/lib/spack/spack/concretize.py
+++ b/lib/spack/spack/concretize.py
@@ -48,7 +48,7 @@ _abi: Union[spack.abi.ABI, llnl.util.lang.Singleton] = llnl.util.lang.Singleton(
@functools.total_ordering
-class reverse_order(object):
+class reverse_order:
"""Helper for creating key functions.
This is a wrapper that inverts the sense of the natural
@@ -65,7 +65,7 @@ class reverse_order(object):
return other.value < self.value
-class Concretizer(object):
+class Concretizer:
"""You can subclass this class to override some of the default
concretization strategies, or you can override all of them.
"""