mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
implement abstract methods required for modules
This commit is contained in:
parent
82f361d48a
commit
2188e62b69
1 changed files with 8 additions and 0 deletions
|
|
@ -434,6 +434,14 @@ class OpenPypeAddOn(OpenPypeModule):
|
|||
# Enable Addon by default
|
||||
enabled = True
|
||||
|
||||
def initialize(self, module_settings):
|
||||
"""Initialization is not be required for most of addons."""
|
||||
pass
|
||||
|
||||
def connect_with_modules(self, enabled_modules):
|
||||
"""Do not require to implement connection with modules for addon."""
|
||||
pass
|
||||
|
||||
|
||||
class ModulesManager:
|
||||
"""Manager of Pype modules helps to load and prepare them to work.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue