Source code for RsFsw.Implementations.Initiate.Block.Immediate
from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class ImmediateCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("immediate", core, parent)
[docs]
def set(self, group_name: str=None) -> None:
"""
``INITiate:BLOCk:IMMediate`` \n
Snippet: ``driver.initiate.block.immediate.set(group_name = 'abc')`` \n
No help available
"""
param = ''
if group_name:
param = Conversions.value_to_quoted_str(group_name)
self._core.io.write(f'INITiate:BLOCk:IMMediate {param}'.strip())