From 9a4205ce64415ce711d3000b6b2a28ae8c99e27f Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Thu, 13 Jul 2023 01:09:01 +0100 Subject: [PATCH] I don't think this is necessary on logout. patch bump --- pyproject.toml | 2 +- voicemeeterlib/remote.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a96c099..4561adc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "voicemeeter-api" -version = "2.3.2" +version = "2.3.3" description = "A Python wrapper for the Voiceemeter API" authors = ["onyx-and-iris "] license = "MIT" diff --git a/voicemeeterlib/remote.py b/voicemeeterlib/remote.py index 5e61896..ad25cf6 100644 --- a/voicemeeterlib/remote.py +++ b/voicemeeterlib/remote.py @@ -327,7 +327,6 @@ class Remote(CBindings): def logout(self) -> NoReturn: """Wait for dirty parameters to clear, then logout of the API""" - self.clear_dirty() time.sleep(0.1) self.call(self.vm_logout) self.logger.info(f"{type(self).__name__}: Successfully logged out of {self}")