fix passing kind_id to voicemeeterlib

This commit is contained in:
onyx-and-iris 2023-08-22 18:10:10 +01:00
parent 654a86b2ab
commit 5554286ee9

View File

@ -8,6 +8,6 @@ logging.basicConfig(level=logging.DEBUG)
kind_id = "potato" kind_id = "potato"
with voicemeeterlib.api("potato") as vm: with voicemeeterlib.api(kind_id) as vm:
with nvda_voicemeeter.build(f"Voicemeeter {kind_id.capitalize()} NVDA", vm) as window: with nvda_voicemeeter.build(f"Voicemeeter {kind_id.capitalize()} NVDA", vm) as window:
window.run() window.run()