diff --git a/plugin/core/types.py b/plugin/core/types.py index 12b27033a..8115dbc73 100644 --- a/plugin/core/types.py +++ b/plugin/core/types.py @@ -870,6 +870,10 @@ def __getattr__(self, name: str, /) -> Any: return self._all_settings[name] raise AttributeError(name) + @property + def root_settings(self) -> dict[str, Any]: + return self._all_settings + @property @deprecated('Use initialization_options instead') def init_options(self) -> DottedDict: