from typing import List
from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class HlableCls:
"""Hlable commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("hlable", core, parent)
[docs] def get_catalog(self) -> List[str]:
"""SCPI: SYSTem:UNDO:HLABle:CATalog \n
Snippet: value: List[str] = driver.system.undo.hlable.get_catalog() \n
No command help available \n
:return: catalog: No help available
"""
response = self._core.io.query_str('SYSTem:UNDO:HLABle:CATalog?')
return Conversions.str_to_str_list(response)
[docs] def set_select(self, label: str) -> None:
"""SCPI: SYSTem:UNDO:HLABle:SELect \n
Snippet: driver.system.undo.hlable.set_select(label = 'abc') \n
No command help available \n
:param label: No help available
"""
param = Conversions.value_to_quoted_str(label)
self._core.io.write(f'SYSTem:UNDO:HLABle:SELect {param}')