Source code for RsNgx.Implementations.Interfaces

from ...Internal.Core import Core
from ...Internal.CommandsGroup import CommandsGroup


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class InterfacesCls: """Interfaces commands group definition. 1 total commands, 1 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("interfaces", core, parent) @property def usb(self): """usb commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_usb'): from .Usb import UsbCls self._usb = UsbCls(self._core, self._cmd_group) return self._usb