use new Anatomy import in rest of pipeline

This commit is contained in:
Jakub Trllo 2022-06-29 15:22:49 +02:00
parent af2c57674e
commit b6ea950b3a
4 changed files with 6 additions and 10 deletions

View file

@ -14,11 +14,8 @@ from pyblish.lib import MessageHandler
import openpype
from openpype.modules import load_modules, ModulesManager
from openpype.settings import get_project_settings
from openpype.lib import (
Anatomy,
filter_pyblish_plugins,
)
from openpype.lib import filter_pyblish_plugins
from .anatomy import Anatomy
from . import (
legacy_io,
register_loader_plugin_path,

View file

@ -9,10 +9,10 @@ import numbers
import six
from bson.objectid import ObjectId
from openpype.lib import Anatomy
from openpype.pipeline import (
schema,
legacy_io,
Anatomy,
)
log = logging.getLogger(__name__)