diff --git a/README.md b/README.md index a60ef0a..70c4420 100644 --- a/README.md +++ b/README.md @@ -51,12 +51,12 @@ class ManyThings: ) def other_things(self): + self.vm.bus[3].gain = -6.3 + self.vm.bus[4].eq = True info = ( f"bus 3 gain has been set to {self.vm.bus[3].gain}", f"bus 4 eq has been set to {self.vm.bus[4].eq}", ) - self.vm.bus[3].gain = -6.3 - self.vm.bus[4].eq = True print("\n".join(info)) diff --git a/__main__.py b/__main__.py index f88a41b..bef55b0 100644 --- a/__main__.py +++ b/__main__.py @@ -13,12 +13,12 @@ class ManyThings: ) def other_things(self): + self.vm.bus[3].gain = -6.3 + self.vm.bus[4].eq = True info = ( f"bus 3 gain has been set to {self.vm.bus[3].gain}", f"bus 4 eq has been set to {self.vm.bus[4].eq}", ) - self.vm.bus[3].gain = -6.3 - self.vm.bus[4].eq = True print("\n".join(info))