mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 08:54:53 +01:00
Removed unnecessary functions
This commit is contained in:
parent
e76691ea6e
commit
f10564ffb8
2 changed files with 0 additions and 13 deletions
|
|
@ -50,13 +50,11 @@ from .plugins import (
|
|||
register_loader_plugin_path,
|
||||
deregister_loader_plugin,
|
||||
|
||||
discover_loader_pre_hook_plugin,
|
||||
register_loader_pre_hook_plugin,
|
||||
deregister_loader_pre_hook_plugin,
|
||||
register_loader_pre_hook_plugin_path,
|
||||
deregister_loader_pre_hook_plugin_path,
|
||||
|
||||
discover_loader_post_hook_plugin,
|
||||
register_loader_post_hook_plugin,
|
||||
deregister_loader_post_hook_plugin,
|
||||
register_loader_post_hook_plugin_path,
|
||||
|
|
@ -116,13 +114,11 @@ __all__ = (
|
|||
"register_loader_plugin_path",
|
||||
"deregister_loader_plugin",
|
||||
|
||||
"discover_loader_pre_hook_plugin",
|
||||
"register_loader_pre_hook_plugin",
|
||||
"deregister_loader_pre_hook_plugin",
|
||||
"register_loader_pre_hook_plugin_path",
|
||||
"deregister_loader_pre_hook_plugin_path",
|
||||
|
||||
"discover_loader_post_hook_plugin",
|
||||
"register_loader_post_hook_plugin",
|
||||
"deregister_loader_post_hook_plugin",
|
||||
"register_loader_post_hook_plugin_path",
|
||||
|
|
|
|||
|
|
@ -327,10 +327,6 @@ def register_loader_plugin_path(path):
|
|||
return register_plugin_path(LoaderPlugin, path)
|
||||
|
||||
|
||||
def discover_loader_pre_hook_plugin(project_name=None):
|
||||
plugins = discover(PreLoadHookPlugin)
|
||||
return plugins
|
||||
|
||||
def register_loader_pre_hook_plugin(plugin):
|
||||
return register_plugin(PreLoadHookPlugin, plugin)
|
||||
|
||||
|
|
@ -347,11 +343,6 @@ def deregister_loader_pre_hook_plugin_path(path):
|
|||
deregister_plugin_path(PreLoadHookPlugin, path)
|
||||
|
||||
|
||||
def discover_loader_post_hook_plugin():
|
||||
plugins = discover(PostLoadHookPlugin)
|
||||
return plugins
|
||||
|
||||
|
||||
def register_loader_post_hook_plugin(plugin):
|
||||
return register_plugin(PostLoadHookPlugin, plugin)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue