minor changes

minor changes
This commit is contained in:
onyx-and-iris
2022-06-18 11:12:33 +01:00
parent 482c197f70
commit 0f8615715c
3 changed files with 14 additions and 16 deletions

View File

@@ -282,7 +282,7 @@ def _make_channelout_mixin(kind):
)
__make_channelout_mixins = {
_make_channelout_mixins = {
kind.name: _make_channelout_mixin(kind) for kind in kinds_all
}
@@ -296,7 +296,7 @@ def strip_factory(is_phys_strip, remote, i) -> Union[PhysicalStrip, VirtualStrip
Returns a physical or virtual strip subclass
"""
STRIP_cls = PhysicalStrip if is_phys_strip else VirtualStrip
CHANNELOUTMIXIN_cls = __make_channelout_mixins[remote.kind.name]
CHANNELOUTMIXIN_cls = _make_channelout_mixins[remote.kind.name]
_kls = (STRIP_cls, CHANNELOUTMIXIN_cls)
if remote.kind.name == "potato":