The emc_rule_checker_settings.py module#
Summary#
Manages EMI scanner settings. |
Parse and convert keyword arguments to string format. |
Module detail#
- emc_rule_checker_settings.kwargs_parser(kwargs: dict) dict[str, str]#
Parse and convert keyword arguments to string format.
- Parameters:
- kwargs
dict Dictionary of keyword arguments to parse.
- kwargs
- Returns:
Examples
>>> from pyedb.misc.siw_feature_config.emc_rule_checker_settings import kwargs_parser >>> kwargs = {"key1": True, "key2": 123, "key3": "test"} >>> result = kwargs_parser(kwargs) >>> result {'key1': '1', 'key2': '123', 'key3': 'test'}