felicity-lims/felicity/version/version.py
Aurthur Musendame a2f97c92a1 mypy corrections
2024-09-28 09:29:22 +02:00

19 lines
371 B
Python

__version__ = "0.1.1"
class FelicityVersion:
_version = __version__
@classmethod
def version(cls) -> str:
return cls._version
@staticmethod
def get_updates() -> dict:
"""get latest release"""
return {}
@staticmethod
def upgrade() -> dict:
"""get latest changes from github and upgrade"""
return {}