[docs]classPathCls:"""Path commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("path",core,parent)
[docs]defget_count(self)->int:"""SCPI: [SOURce]:PATH:COUNt \n Snippet: value: int = driver.source.path.get_count() \n No command help available \n :return: count: No help available """response=self._core.io.query_str('SOURce:PATH:COUNt?')returnConversions.str_to_int(response)