[docs]classErgchCls:"""Ergch commands group definition. 6 total commands, 6 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("ergch",core,parent)@propertydefctype(self):"""ctype commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_ctype'):from.CtypeimportCtypeClsself._ctype=CtypeCls(self._core,self._cmd_group)returnself._ctype@propertydefdtau(self):"""dtau commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_dtau'):from.DtauimportDtauClsself._dtau=DtauCls(self._core,self._cmd_group)returnself._dtau@propertydefetau(self):"""etau commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_etau'):from.EtauimportEtauClsself._etau=EtauCls(self._core,self._cmd_group)returnself._etau@propertydefrgPattern(self):"""rgPattern commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_rgPattern'):from.RgPatternimportRgPatternClsself._rgPattern=RgPatternCls(self._core,self._cmd_group)returnself._rgPattern@propertydefssIndex(self):"""ssIndex commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_ssIndex'):from.SsIndeximportSsIndexClsself._ssIndex=SsIndexCls(self._core,self._cmd_group)returnself._ssIndex@propertydefttiedch(self):"""ttiedch commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_ttiedch'):from.TtiedchimportTtiedchClsself._ttiedch=TtiedchCls(self._core,self._cmd_group)returnself._ttiedchdefclone(self)->'ErgchCls':"""Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group"""new_group=ErgchCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group