Setting
- class Setting(key, factory_value, value_type, description)[source]
Bases:
object
- __init__(key, factory_value, value_type, description)[source]
A class containing the name of a particular setting, its factory (default) value, the type of the value and a description. The type can be: int, float, str, enum, list[int], list[str], list[enum]. When the type is an enum or list[enum] the factory value contains the string representation of the enum.
Methods
__init__
(key, factory_value, value_type, ...)A class containing the name of a particular setting, its factory (default) value, the type of the value and a description.