[docs]classListPyCls:"""ListPy commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("listPy",core,parent)
[docs]defget(self)->List[str]:"""SCPI: MMEMory:LOAD:IQ:STReam:LIST \n Snippet: value: List[str] = driver.massMemory.load.iq.stream.listPy.get() \n Returns the available channels in the currently loaded input file. \n :return: result: No help available"""response=self._core.io.query_str(f'MMEMory:LOAD:IQ:STReam:LIST?')returnConversions.str_to_str_list(response)