Skip to content
Open
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions plugin/core/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -870,6 +870,10 @@ def __getattr__(self, name: str, /) -> Any:
return self._all_settings[name]
raise AttributeError(name)

@property
def root_settings(self) -> Any:
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could be typed a bit more strictly as dict[str, Any], right?

return self._all_settings

@property
@deprecated('Use initialization_options instead')
def init_options(self) -> DottedDict:
Expand Down
Loading