implement 3d parameters

This commit is contained in:
2026-01-17 12:29:10 +00:00
parent ecbdd2778f
commit ad88286509
7 changed files with 186 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
from abc import abstractmethod
from . import kinds
from .iremote import IRemote
from .kinds import kinds_all
class VbanStream(IRemote):
@@ -194,7 +194,7 @@ def _make_stream_pair(remote, kind):
def _make_stream_pairs(remote):
return {kind.name: _make_stream_pair(remote, kind) for kind in kinds_all}
return {kind.name: _make_stream_pair(remote, kind) for kind in kinds.all}
class Vban: