From 5b86a2b7b29018126a355665cdc42f50704d21ff Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:26:57 +0100 Subject: [PATCH] keep variable names consistent in readme --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c4645f4..5ea55cb 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ print(strip[0].label) example: ```python -vm.strip[3].gainlayer[3].gain = 3.7 +vban.strip[3].gainlayer[3].gain = 3.7 ``` Gainlayers are defined for potato version only. @@ -148,7 +148,7 @@ The following properties are available. example: ```python -print(vm.strip[3].levels.prefader) +print(vban.strip[3].levels.prefader) ``` Level properties will return -200.0 if no audio detected. @@ -168,7 +168,7 @@ example: ```python vban.bus[4].eq = true -print(vm.bus[0].label) +print(vban.bus[0].label) ``` ##### Modes @@ -194,9 +194,9 @@ The following methods are available. example: ```python -vm.bus[4].mode.amix = True +vban.bus[4].mode.amix = True -print(vm.bus[2].mode.get()) +print(vban.bus[2].mode.get()) ``` ##### Levels @@ -208,7 +208,7 @@ The following properties are available. example: ```python -print(vm.bus[0].levels.all) +print(vban.bus[0].levels.all) ``` `levels.all` will return -200.0 if no audio detected.