Remove methods for pre/post loader hooks from higher api

This "hides" a bit methods that are not completely relevant from high level API.
This commit is contained in:
Petr Kalis 2025-06-13 14:44:14 +02:00
parent 0ac277404c
commit ee96cdc2c3

View file

@ -42,16 +42,6 @@ from .load import (
register_loader_plugin_path,
deregister_loader_plugin,
register_loader_pre_hook_plugin,
deregister_loader_pre_hook_plugin,
register_loader_pre_hook_plugin_path,
deregister_loader_pre_hook_plugin_path,
register_loader_post_hook_plugin,
deregister_loader_post_hook_plugin,
register_loader_post_hook_plugin_path,
deregister_loader_post_hook_plugin_path,
load_container,
remove_container,
update_container,
@ -61,7 +51,6 @@ from .load import (
get_representation_path,
get_representation_context,
get_repres_contexts,
get_hook_loaders_by_identifier
)
from .publish import (
@ -171,16 +160,6 @@ __all__ = (
"register_loader_plugin_path",
"deregister_loader_plugin",
"register_loader_pre_hook_plugin",
"deregister_loader_pre_hook_plugin",
"register_loader_pre_hook_plugin_path",
"deregister_loader_pre_hook_plugin_path",
"register_loader_post_hook_plugin",
"deregister_loader_post_hook_plugin",
"register_loader_post_hook_plugin_path",
"deregister_loader_post_hook_plugin_path",
"load_container",
"remove_container",
"update_container",
@ -241,8 +220,6 @@ __all__ = (
"register_workfile_build_plugin_path",
"deregister_workfile_build_plugin_path",
"get_hook_loaders_by_identifier",
# Backwards compatible function names
"install",
"uninstall",