[docs]classPhaseCls:"""Phase commands group definition. 35 total commands, 5 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("phase",core,parent)@propertydefdeviation(self):"""deviation commands group. 6 Sub-classes, 1 commands."""ifnothasattr(self,'_deviation'):from.DeviationimportDeviationClsself._deviation=DeviationCls(self._core,self._cmd_group)returnself._deviation@propertydefperror(self):"""perror commands group. 6 Sub-classes, 1 commands."""ifnothasattr(self,'_perror'):from.PerrorimportPerrorClsself._perror=PerrorCls(self._core,self._cmd_group)returnself._perror@propertydefpoint(self):"""point commands group. 6 Sub-classes, 1 commands."""ifnothasattr(self,'_point'):from.PointimportPointClsself._point=PointCls(self._core,self._cmd_group)returnself._point@propertydefppPhase(self):"""ppPhase commands group. 6 Sub-classes, 1 commands."""ifnothasattr(self,'_ppPhase'):from.PpPhaseimportPpPhaseClsself._ppPhase=PpPhaseCls(self._core,self._cmd_group)returnself._ppPhase@propertydefrerror(self):"""rerror commands group. 6 Sub-classes, 1 commands."""ifnothasattr(self,'_rerror'):from.RerrorimportRerrorClsself._rerror=RerrorCls(self._core,self._cmd_group)returnself._rerrordefclone(self)->'PhaseCls':"""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=PhaseCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group