[docs]classM4TCls:"""M4T commands group definition. 4 total commands, 4 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("m4T",core,parent)@propertydeffoffset(self):"""foffset commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_foffset'):from.FoffsetimportFoffsetClsself._foffset=FoffsetCls(self._core,self._cmd_group)returnself._foffset@propertydefmbytes(self):"""mbytes commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_mbytes'):from.MbytesimportMbytesClsself._mbytes=MbytesCls(self._core,self._cmd_group)returnself._mbytes@propertydefrframe(self):"""rframe commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_rframe'):from.RframeimportRframeClsself._rframe=RframeCls(self._core,self._cmd_group)returnself._rframe@propertydefslot(self):"""slot commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_slot'):from.SlotimportSlotClsself._slot=SlotCls(self._core,self._cmd_group)returnself._slotdefclone(self)->'M4TCls':"""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=M4TCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group