From 6b4e4d97e3cc794667ef6ad1163fb5a767b268aa Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Sat, 6 Aug 2022 10:49:56 +0100 Subject: [PATCH] fix str in readme, __main__. --- README.md | 2 +- __main__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 680f9eb..84a4aae 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ class ManyThings: self.vm.strip[0].label = "podmic" self.vm.strip[0].mute = True print( - f"strip 0 ({self.vm.strip[0].label}) label has been set to {self.vm.strip[0].mute}" + f"strip 0 ({self.vm.strip[0].label}) mute has been set to {self.vm.strip[0].mute}" ) def other_things(self): diff --git a/__main__.py b/__main__.py index dd840b8..f88a41b 100644 --- a/__main__.py +++ b/__main__.py @@ -9,7 +9,7 @@ class ManyThings: self.vm.strip[0].label = "podmic" self.vm.strip[0].mute = True print( - f"strip 0 ({self.vm.strip[0].label}) label has been set to {self.vm.strip[0].mute}" + f"strip 0 ({self.vm.strip[0].label}) mute has been set to {self.vm.strip[0].mute}" ) def other_things(self):