[docs]classUnitCls:"""Unit commands group definition. 5 total commands, 5 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("unit",core,parent)@propertydefburst(self):"""burst commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_burst'):from.BurstimportBurstClsself._burst=BurstCls(self._core,self._cmd_group)returnself._burst@propertydefevm(self):"""evm commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_evm'):from.EvmimportEvmClsself._evm=EvmCls(self._core,self._cmd_group)returnself._evm@propertydefgimbalance(self):"""gimbalance commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_gimbalance'):from.GimbalanceimportGimbalanceClsself._gimbalance=GimbalanceCls(self._core,self._cmd_group)returnself._gimbalance@propertydefpreamble(self):"""preamble commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_preamble'):from.PreambleimportPreambleClsself._preamble=PreambleCls(self._core,self._cmd_group)returnself._preamble@propertydefsflatness(self):"""sflatness commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_sflatness'):from.SflatnessimportSflatnessClsself._sflatness=SflatnessCls(self._core,self._cmd_group)returnself._sflatnessdefclone(self)->'UnitCls':"""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=UnitCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group