complex_setting_changed
Issues a warning when specific complex settings are overridden to alert the user of potential unexpected behavior.
def complex_setting_changed(
enter: boolean,
setting: string,
**kwargs: dict
) - > null
Warns the user when specific complex settings are overridden to prevent unexpected behavior during runtime.
Parameters
| Name | Type | Description |
|---|---|---|
| enter | boolean | A flag indicating whether the setting is being entered (True) or exited (False) during a configuration override. |
| setting | string | The name of the configuration setting that has been modified. |
| **kwargs | dict | Additional keyword arguments passed by the setting_changed signal. |
Returns
| Type | Description |
|---|---|
null | Nothing is returned; the function performs a side effect by issuing a warning. |