From 2f9fee948ac6fd992d7d1b122e5049a854195758 Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Fri, 17 Jun 2022 17:52:09 +0100 Subject: [PATCH] fix docstring fix docstring --- pyproject.toml | 2 +- vban_cmd/base.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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}"