Skip to content

Commit

Permalink
remove extraneous quotes around !r formatted var
Browse files Browse the repository at this point in the history
  • Loading branch information
ewdurbin committed Oct 24, 2024
1 parent 029f415 commit ad20c6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packaging/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def parse_wheel_filename(
build_match = _build_tag_regex.match(build_part)
if build_match is None:
raise InvalidWheelFilename(
f"Invalid build number: {build_part} in '{filename!r}'"
f"Invalid build number: {build_part} in {filename!r}"
)
build = cast(BuildTag, (int(build_match.group(1)), build_match.group(2)))
else:
Expand Down

0 comments on commit ad20c6b

Please # to comment.