Skip to content

Commit

Permalink
fix: run black
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Oct 28, 2024
1 parent d304976 commit e7cae93
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ozi_spec/_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ def _current_version() -> str:

def _ozi_version() -> str:
"""Returns the current OZI release branch."""
major, minor, *_, = _current_version().split('.')
(
major,
minor,
*_,
) = _current_version().split('.')
return str(float(f'{major}.{minor}') + 1.13)


Expand Down

0 comments on commit e7cae93

Please sign in to comment.