Update kinds.py

fix ins outs order in kindmap
This commit is contained in:
onyx-and-iris 2022-03-17 14:07:12 +00:00
parent 3e0152082b
commit ae2129c1fe

View File

@ -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()