[docs]classTimeCls:"""Time commands group definition. 4 total commands, 3 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("time",core,parent)@propertydeflength(self):"""length commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_length'):from.LengthimportLengthClsself._length=LengthCls(self._core,self._cmd_group)returnself._length@propertydefstart(self):"""start commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_start'):from.StartimportStartClsself._start=StartCls(self._core,self._cmd_group)returnself._start@propertydefpercent(self):"""percent commands group. 1 Sub-classes, 1 commands."""ifnothasattr(self,'_percent'):from.PercentimportPercentClsself._percent=PercentCls(self._core,self._cmd_group)returnself._percentdefclone(self)->'TimeCls':"""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=TimeCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group