mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 19:09:32 +00:00
11 lines
262 B
Python
11 lines
262 B
Python
"""Mealie util functions."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from awesomeversion import AwesomeVersion
|
|
|
|
|
|
def create_version(version: str) -> AwesomeVersion:
|
|
"""Convert beta versions to PEP440."""
|
|
return AwesomeVersion(version.replace("beta-", "b"))
|