Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sbom.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def create_pip_sbom_from_wheel(
match = version_pin_re.match(line)
assert (
match is not None
), f"Unparseable line in vendor.txt: {line!r}" # Make mypy happy.
), f"Unparsable line in vendor.txt: {line!r}" # Make mypy happy.

# Parse out and normalize the project name.
project_name, project_version = match.groups()
Expand Down
2 changes: 1 addition & 1 deletion tests/test_update_version_next.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Directives to change
--------------------
Here, all occurences of NEXT (lowercase) should be changed:
Here, all occurrences of NEXT (lowercase) should be changed:
.. versionadded:: next
Expand Down