Skip to content

Commit 6f948e6

Browse files
committed
chore: use explicit name for iterable value
Signed-off-by: Nathan Nguyen <[email protected]>
1 parent 077adc0 commit 6f948e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/macaron/vsa/vsa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def get_common_purl_from_artifact_purls(purl_strs: Iterable[str]) -> str | None:
152152
version values. The common PackageURL contains these values.
153153
"""
154154
try:
155-
purls = [PackageURL.from_string(_) for _ in purl_strs]
155+
purls = [PackageURL.from_string(purl_str) for purl_str in purl_strs]
156156
except ValueError:
157157
return None
158158

0 commit comments

Comments
 (0)