Source code for RsSmw.Implementations.Source.Fsimulator.Test.OrgLayer

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from .....Internal.Utilities import trim_str_response


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class OrgLayerCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("orgLayer", core, parent)

[docs] def get(self, test_arg: str) -> str: """ ``[SOURce<HW>]:FSIMulator:TEST:ORGLayer`` \n Snippet: ``value: str = driver.source.fsimulator.test.orgLayer.get(test_arg = 'abc')`` \n No help available """ param = Conversions.value_to_quoted_str(test_arg) response = self._core.io.query_str(f'SOURce<HwInstance>:FSIMulator:TEST:ORGLayer? {param}') return trim_str_response(response)