[docs]classSourceCls:"""Source commands group definition. 6 total commands, 4 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("source",core,parent)@propertydefvswr(self):"""vswr commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_vswr'):from.VswrimportVswrClsself._vswr=VswrCls(self._core,self._cmd_group)returnself._vswr@propertydefrl(self):"""rl commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_rl'):from.RlimportRlClsself._rl=RlCls(self._core,self._cmd_group)returnself._rl@propertydefsns(self):"""sns commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_sns'):from.SnsimportSnsClsself._sns=SnsCls(self._core,self._cmd_group)returnself._sns@propertydefcalibration(self):"""calibration commands group. 3 Sub-classes, 0 commands."""ifnothasattr(self,'_calibration'):from.CalibrationimportCalibrationClsself._calibration=CalibrationCls(self._core,self._cmd_group)returnself._calibrationdefclone(self)->'SourceCls':"""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=SourceCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group