[docs]classPucchCls:"""Pucch commands group definition. 5 total commands, 5 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("pucch",core,parent)@propertydeff1Naport(self):"""f1Naport commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_f1Naport'):from.F1NaportimportF1NaportClsself._f1Naport=F1NaportCls(self._core,self._cmd_group)returnself._f1Naport@propertydeff2Naport(self):"""f2Naport commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_f2Naport'):from.F2NaportimportF2NaportClsself._f2Naport=F2NaportCls(self._core,self._cmd_group)returnself._f2Naport@propertydeff3Naport(self):"""f3Naport commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_f3Naport'):from.F3NaportimportF3NaportClsself._f3Naport=F3NaportCls(self._core,self._cmd_group)returnself._f3Naport@propertydeff4Naport(self):"""f4Naport commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_f4Naport'):from.F4NaportimportF4NaportClsself._f4Naport=F4NaportCls(self._core,self._cmd_group)returnself._f4Naport@propertydeff5Naport(self):"""f5Naport commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_f5Naport'):from.F5NaportimportF5NaportClsself._f5Naport=F5NaportCls(self._core,self._cmd_group)returnself._f5Naportdefclone(self)->'PucchCls':"""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=PucchCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group