returning empty lines

This commit is contained in:
Jakub Jezek 2024-10-24 13:41:20 +02:00
parent 16abc3a64e
commit 2b5ab5439a
No known key found for this signature in database
GPG key ID: 06DBD609ADF27FD9

View file

@ -120,12 +120,16 @@ __all__ = (
"AYON_CONTAINER_ID",
"AYON_INSTANCE_ID",
"HOST_WORKFILE_EXTENSIONS",
# --- Anatomy ---
"Anatomy",
# --- Temp dir ---
"get_temp_dir",
# --- Staging dir ---
"get_staging_dir",
# --- Create ---
"BaseCreator",
"Creator",
@ -134,6 +138,7 @@ __all__ = (
"CreatedInstance",
"CreatorError",
"CreatorError",
# - legacy creation
"LegacyCreator",
"legacy_create",
@ -143,6 +148,7 @@ __all__ = (
"deregister_creator_plugin",
"register_creator_plugin_path",
"deregister_creator_plugin_path",
# --- Load ---
"HeroVersionType",
"IncompatibleLoaderError",
@ -161,6 +167,7 @@ __all__ = (
"get_representation_path",
"get_representation_context",
"get_repres_contexts",
# --- Publish ---
"PublishValidationError",
"PublishXmlValidationError",
@ -168,6 +175,7 @@ __all__ = (
"AYONPyblishPluginMixin",
"OpenPypePyblishPluginMixin",
"OptionalPyblishPluginMixin",
# --- Actions ---
"LauncherAction",
"InventoryAction",
@ -179,6 +187,7 @@ __all__ = (
"register_inventory_action_path",
"deregister_inventory_action",
"deregister_inventory_action_path",
# --- Process context ---
"install_ayon_plugins",
"install_openpype_plugins",
@ -197,12 +206,14 @@ __all__ = (
"get_current_project_name",
"get_current_folder_path",
"get_current_task_name",
# Workfile templates
"discover_workfile_build_plugins",
"register_workfile_build_plugin",
"deregister_workfile_build_plugin",
"register_workfile_build_plugin_path",
"deregister_workfile_build_plugin_path",
# Backwards compatible function names
"install",
"uninstall",