Skip to content

Commit d46ac9b

Browse files
authored
spec.py: fix return type of concretized() (spack#48504)
1 parent 2e472a1 commit d46ac9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/spack/spack/spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3061,7 +3061,7 @@ def _finalize_concretization(self):
30613061
for spec in self.traverse():
30623062
spec._cached_hash(ht.dag_hash)
30633063

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

0 commit comments

Comments
 (0)