Source code for RsFswp.Implementations.Sense.Correction.Fresponse.User.Flist.Select

from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions
from ....... import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SelectCls: """Select commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("select", core, parent)
[docs] def set(self, file_path: str, fileList=repcap.FileList.Default) -> None: """SCPI: [SENSe]:CORRection:FRESponse:USER:FLISt<fli>:SELect \n Snippet: driver.sense.correction.fresponse.user.flist.select.set(file_path = '1', fileList = repcap.FileList.Default) \n No command help available \n :param file_path: No help available :param fileList: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Flist') """ param = Conversions.value_to_quoted_str(file_path) fileList_cmd_val = self._cmd_group.get_repcap_cmd_value(fileList, repcap.FileList) self._core.io.write(f'SENSe:CORRection:FRESponse:USER:FLISt{fileList_cmd_val}:SELect {param}')