mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
modified docstrings
This commit is contained in:
parent
e5e5924d8c
commit
9c6494ecb5
1 changed files with 9 additions and 4 deletions
|
|
@ -290,7 +290,11 @@ class ModulesManager:
|
|||
module.connect_with_modules(enabled_modules)
|
||||
|
||||
def get_enabled_modules(self):
|
||||
"""Enabled modules initialized by the manager."""
|
||||
"""Enabled modules initialized by the manager.
|
||||
|
||||
Returns:
|
||||
list: Initialized and enabled modules.
|
||||
"""
|
||||
return [
|
||||
module
|
||||
for module in self.modules
|
||||
|
|
@ -323,10 +327,11 @@ class ModulesManager:
|
|||
def collect_plugin_paths(self):
|
||||
"""Helper to collect all plugins from modules inherited IPluginPaths.
|
||||
|
||||
Output is dictionary with keys "publish", "create", "load" and
|
||||
"actions" each containing list of paths.
|
||||
|
||||
Unknown keys are logged out.
|
||||
|
||||
Returns:
|
||||
dict: Output is dictionary with keys "publish", "create", "load"
|
||||
and "actions" each containing list of paths.
|
||||
"""
|
||||
# Output structure
|
||||
output = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue