ftrack is using new source of anatomy

This commit is contained in:
Jakub Trllo 2022-06-29 15:29:59 +02:00
parent 05fe6ca5cf
commit 7bcc7277c3
7 changed files with 10 additions and 11 deletions

View file

@ -2,11 +2,11 @@ import re
import subprocess
from openpype.client import get_asset_by_id, get_asset_by_name
from openpype.settings import get_project_settings
from openpype.pipeline import Anatomy
from openpype_modules.ftrack.lib import BaseEvent
from openpype_modules.ftrack.lib.avalon_sync import CUST_ATTR_ID_KEY
from openpype.api import Anatomy, get_project_settings
class UserAssigmentEvent(BaseEvent):
"""

View file

@ -1,7 +1,7 @@
import os
import collections
import copy
from openpype.api import Anatomy
from openpype.pipeline import Anatomy
from openpype_modules.ftrack.lib import BaseAction, statics_icon

View file

@ -11,9 +11,8 @@ from openpype.client import (
get_versions,
get_representations
)
from openpype.api import Anatomy
from openpype.lib import StringTemplate, TemplateUnsolved
from openpype.pipeline import AvalonMongoDB
from openpype.pipeline import AvalonMongoDB, Anatomy
from openpype_modules.ftrack.lib import BaseAction, statics_icon

View file

@ -10,12 +10,13 @@ from openpype.client import (
get_versions,
get_representations
)
from openpype.api import Anatomy, config
from openpype.pipeline import Anatomy
from openpype_modules.ftrack.lib import BaseAction, statics_icon
from openpype_modules.ftrack.lib.avalon_sync import CUST_ATTR_ID_KEY
from openpype_modules.ftrack.lib.custom_attributes import (
query_custom_attributes
)
from openpype.lib import config
from openpype.lib.delivery import (
path_from_representation,
get_format_dict,

View file

@ -11,13 +11,13 @@ from openpype.client import (
get_project,
get_assets,
)
from openpype.api import get_project_settings
from openpype.settings import get_project_settings
from openpype.lib import (
get_workfile_template_key,
get_workdir_data,
Anatomy,
StringTemplate,
)
from openpype.pipeline import Anatomy
from openpype_modules.ftrack.lib import BaseAction, statics_icon
from openpype_modules.ftrack.lib.avalon_sync import create_chunks

View file

@ -11,10 +11,10 @@ from openpype.client import (
get_version_by_name,
get_representation_by_name
)
from openpype.api import Anatomy
from openpype.pipeline import (
get_representation_path,
AvalonMongoDB,
Anatomy,
)
from openpype_modules.ftrack.lib import BaseAction, statics_icon

View file

@ -14,8 +14,7 @@ from openpype.client import (
get_representations
)
from openpype_modules.ftrack.lib import BaseAction, statics_icon
from openpype.api import Anatomy
from openpype.pipeline import AvalonMongoDB
from openpype.pipeline import AvalonMongoDB, Anatomy
from openpype_modules.ftrack.lib.avalon_sync import CUST_ATTR_ID_KEY