From ae2129c1fe7eb6b0e13f3d24e2efa9058683c6aa Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Thu, 17 Mar 2022 14:07:12 +0000 Subject: [PATCH] Update kinds.py fix ins outs order in kindmap --- vbancmd/kinds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vbancmd/kinds.py b/vbancmd/kinds.py index 172d753..75685a8 100644 --- a/vbancmd/kinds.py +++ b/vbancmd/kinds.py @@ -7,7 +7,7 @@ from .errors import VMCMDErrors Represents a major version of Voicemeeter and describes its strip layout. """ -VMKind = namedtuple('VMKind', ['id', 'name', 'outs', 'ins', 'executable', 'vban']) +VMKind = namedtuple('VMKind', ['id', 'name', 'ins', 'outs', 'executable', 'vban']) bits = 64 if sys.maxsize > 2**32 else 32 os = platform.system()