Skip to content

Commit

Permalink
spec.py: fix return type of concretized() (spack#48504)
Browse files Browse the repository at this point in the history
  • Loading branch information
haampie authored Jan 10, 2025
1 parent 2e472a1 commit d46ac9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/spack/spack/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -3061,7 +3061,7 @@ def _finalize_concretization(self):
for spec in self.traverse():
spec._cached_hash(ht.dag_hash)

def concretized(self, tests: Union[bool, Iterable[str]] = False) -> "spack.spec.Spec":
def concretized(self, tests: Union[bool, Iterable[str]] = False) -> "Spec":
"""This is a non-destructive version of concretize().
First clones, then returns a concrete version of this package
Expand Down

0 comments on commit d46ac9b

Please sign in to comment.