Merge branch 'develop' into rvx-gaffer-to-plugin-host-lists

This commit is contained in:
sjt-rvx 2025-07-02 10:04:12 +00:00 committed by GitHub
commit ec3b1ca7f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View file

@ -50,8 +50,10 @@ from .attribute_definitions import (
)
from .env_tools import (
compute_env_variables_structure,
env_value_to_bool,
get_paths_from_environ,
merge_env_variables,
)
from .terminal import Terminal
@ -166,8 +168,10 @@ __all__ = [
"path_to_subprocess_arg",
"CREATE_NO_WINDOW",
"compute_env_variables_structure",
"env_value_to_bool",
"get_paths_from_environ",
"merge_env_variables",
"ToolNotFoundError",
"find_executable",

View file

@ -24,7 +24,7 @@ from ayon_core.settings import get_project_settings
from ayon_core.lib import is_func_signature_supported
from ayon_core.lib.events import QueuedEventSystem
from ayon_core.lib.attribute_definitions import get_default_values
from ayon_core.host import IWorkfileHost
from ayon_core.host import IWorkfileHost, IPublishHost
from ayon_core.pipeline import Anatomy
from ayon_core.pipeline.template_data import get_template_data
from ayon_core.pipeline.plugin_discover import DiscoverResult
@ -49,7 +49,7 @@ from .creator_plugins import (
discover_convertor_plugins,
)
if typing.TYPE_CHECKING:
from ayon_core.host import HostBase, IPublishHost
from ayon_core.host import HostBase
from ayon_core.lib import AbstractAttrDef
from ayon_core.lib.events import EventCallback, Event