Skip to content

Commit ae4ed05

Browse files
authored
Fix typo in assertion error message
1 parent 34ec8a8 commit ae4ed05

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sbom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def create_pip_sbom_from_wheel(
362362
match = version_pin_re.match(line)
363363
assert (
364364
match is not None
365-
), f"Unparseable line in vendor.txt: {line!r}" # Make mypy happy.
365+
), f"Unparsable line in vendor.txt: {line!r}" # Make mypy happy.
366366

367367
# Parse out and normalize the project name.
368368
project_name, project_version = match.groups()

0 commit comments

Comments
 (0)