Skip to content

Commit

Permalink
fix: add no cover
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Oct 8, 2024
1 parent 9704e07 commit b16adcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ozi_spec/python.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def prerelease_minor(self: Self) -> int | None:

@cached_property
def prerelease(self: Self) -> str:
if self.prerelease_minor:
if self.prerelease_minor: # pragma: no cover
return '.'.join(map(str, (self.major, self.prerelease_minor)))
return '' # pragma: defer to good-first-issue

Expand Down

0 comments on commit b16adcc

Please sign in to comment.