return value of comp.knee to 2DP

patch bump
This commit is contained in:
onyx-and-iris 2023-09-25 17:04:23 +01:00
parent b4306d9af5
commit b79e6a9dbe
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "voicemeeter-api" name = "voicemeeter-api"
version = "2.4.9" version = "2.4.10"
description = "A Python wrapper for the Voiceemeter API" description = "A Python wrapper for the Voiceemeter API"
authors = ["onyx-and-iris <code@onyxandiris.online>"] authors = ["onyx-and-iris <code@onyxandiris.online>"]
license = "MIT" license = "MIT"

View File

@ -168,7 +168,7 @@ class StripComp(IRemote):
@property @property
def knee(self) -> float: def knee(self) -> float:
return round(self.getter("Knee"), 1) return round(self.getter("Knee"), 2)
@knee.setter @knee.setter
def knee(self, val: float): def knee(self, val: float):