diff --git a/pyproject.toml b/pyproject.toml index 07cf817..8ab78f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vban-cmd" -version = "1.0.5" +version = "1.0.6" description = "Python interface for the VBAN RT Packet Service (Sendtext)" authors = ["onyx-and-iris "] license = "MIT" diff --git a/vban_cmd/base.py b/vban_cmd/base.py index bd208b1..d7d95a4 100644 --- a/vban_cmd/base.py +++ b/vban_cmd/base.py @@ -159,7 +159,7 @@ class VbanCmd(metaclass=ABCMeta): @property def version(self) -> str: - """Returns Voicemeeter's version as a tuple""" + """Returns Voicemeeter's version as a string""" v1, v2, v3, v4 = self.public_packet.voicemeeterversion return f"{v1}.{v2}.{v3}.{v4}"