Skip to content

Commit 23331c4

Browse files
committed
Refactor to find_submodule (needed after merge of getavalon#501)
1 parent d14d97b commit 23331c4

File tree

1 file changed

+3
-29
lines changed

1 file changed

+3
-29
lines changed

avalon/blender/pipeline.py

+3-29
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@
1111
import pyblish.util
1212

1313
from .. import api, schema
14-
from ..lib import logger
14+
from ..lib import find_submodule, logger
1515
from ..pipeline import AVALON_CONTAINER_ID
1616
from . import lib, ops
1717

1818
self = sys.modules[__name__]
1919
self._events = dict() # Registered Blender callbacks
2020
self._parent = None # Main window
21-
self._ignore_lock = False
2221

2322
AVALON_CONTAINERS = "AVALON_CONTAINERS"
2423
AVALON_PROPERTY = 'avalon'
@@ -92,18 +91,6 @@ def _register_events():
9291
logger.info("Installed event callback for 'taskChanged'...")
9392

9493

95-
def find_host_config(config: ModuleType) -> Optional[ModuleType]:
96-
"""Find the config for the current host (Blender)."""
97-
98-
config_name = f"{config.__name__}.blender"
99-
try:
100-
return importlib.import_module(config_name)
101-
except ImportError as exc:
102-
if str(exc) != f"No module named '{config_name}'":
103-
raise
104-
return None
105-
106-
10794
def install(config: ModuleType):
10895
"""Install Blender-specific functionality for Avalon.
10996
@@ -118,10 +105,6 @@ def install(config: ModuleType):
118105

119106
pyblish.api.register_host("blender")
120107

121-
host_config = find_host_config(config)
122-
if hasattr(host_config, "install"):
123-
host_config.install()
124-
125108

126109
def uninstall(config: ModuleType):
127110
"""Uninstall Blender-specific functionality of avalon-core.
@@ -132,10 +115,6 @@ def uninstall(config: ModuleType):
132115
config: configuration module
133116
"""
134117

135-
host_config = find_host_config(config)
136-
if hasattr(config, "uninstall"):
137-
host_config.uninstall()
138-
139118
if not IS_HEADLESS:
140119
ops.unregister()
141120

@@ -364,13 +343,8 @@ def ls() -> Iterator:
364343

365344
containers = _ls()
366345

367-
has_metadata_collector = False
368-
config = find_host_config(api.registered_config())
369-
if config is None:
370-
logger.error("Could not find host config for Blender")
371-
return tuple()
372-
if hasattr(config, "collect_container_metadata"):
373-
has_metadata_collector = True
346+
config = find_submodule(api.registered_config(), "blender")
347+
has_metadata_collector = hasattr(config, "collect_container_metadata")
374348

375349
for container in containers:
376350
data = parse_container(container)

0 commit comments

Comments
 (0)