From 848248d02b8b4b38d8ad005afef047888b607249 Mon Sep 17 00:00:00 2001 From: Onyx and Iris Date: Wed, 15 Jan 2025 20:58:47 +0000 Subject: [PATCH] run example snippet through formatter --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eced2e3..012f26e 100644 --- a/README.md +++ b/README.md @@ -31,12 +31,13 @@ Example `__main__.py` file: ```python import voicemeeterlib + import vmcompact def main(): # choose the kind of Voicemeeter (Local connection) - KIND_ID = "banana" + KIND_ID = 'banana' # pass the KIND_ID and the vm object to the app with voicemeeterlib.api(KIND_ID) as vm: @@ -44,7 +45,7 @@ def main(): app.mainloop() -if __name__ == "__main__": +if __name__ == '__main__': main() ```