mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
fix imports
This commit is contained in:
parent
7fd8ca81e4
commit
a75af77907
8 changed files with 10 additions and 12 deletions
|
|
@ -6,7 +6,7 @@ from ayon_core.lib.attribute_definitions import FileDefItem
|
|||
from ayon_core.pipeline import install_host
|
||||
from ayon_core.pipeline.create import CreateContext
|
||||
|
||||
from ayon_core.hosts.traypublisher.api import TrayPublisherHost
|
||||
from ayon_traypublisher.api import TrayPublisherHost
|
||||
|
||||
|
||||
def csvpublish(
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ from ayon_core.pipeline import (
|
|||
CreatorError
|
||||
)
|
||||
from ayon_core.pipeline import colorspace
|
||||
from ayon_core.hosts.traypublisher.api.plugin import TrayPublishCreator
|
||||
from ayon_traypublisher.api.plugin import TrayPublishCreator
|
||||
|
||||
|
||||
class CreateColorspaceLook(TrayPublishCreator):
|
||||
|
|
|
|||
|
|
@ -13,9 +13,7 @@ from ayon_core.lib.transcoding import (
|
|||
VIDEO_EXTENSIONS, IMAGE_EXTENSIONS
|
||||
)
|
||||
from ayon_core.pipeline.create import CreatorError
|
||||
from ayon_core.hosts.traypublisher.api.plugin import (
|
||||
TrayPublishCreator
|
||||
)
|
||||
from ayon_traypublisher.api.plugin import TrayPublishCreator
|
||||
|
||||
|
||||
class IngestCSV(TrayPublishCreator):
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@ from copy import deepcopy
|
|||
import ayon_api
|
||||
import opentimelineio as otio
|
||||
|
||||
from ayon_core.hosts.traypublisher.api.plugin import (
|
||||
from ayon_traypublisher.api.plugin import (
|
||||
TrayPublishCreator,
|
||||
HiddenTrayPublishCreator
|
||||
)
|
||||
from ayon_core.hosts.traypublisher.api.editorial import (
|
||||
from ayon_traypublisher.api.editorial import (
|
||||
ShotMetadataSolver
|
||||
)
|
||||
from ayon_core.pipeline import CreatedInstance
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ from ayon_core.lib.attribute_definitions import (
|
|||
BoolDef,
|
||||
TextDef,
|
||||
)
|
||||
from ayon_core.hosts.traypublisher.api.plugin import TrayPublishCreator
|
||||
from ayon_traypublisher.api.plugin import TrayPublishCreator
|
||||
|
||||
|
||||
class EditorialPackageCreator(TrayPublishCreator):
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ log = Logger.get_logger(__name__)
|
|||
|
||||
|
||||
def initialize():
|
||||
from ayon_core.hosts.traypublisher.api.plugin import SettingsCreator
|
||||
from ayon_traypublisher.api.plugin import SettingsCreator
|
||||
|
||||
project_name = os.environ["AYON_PROJECT_NAME"]
|
||||
project_settings = get_project_settings(project_name)
|
||||
|
|
|
|||
|
|
@ -17,8 +17,8 @@ from ayon_core.pipeline.create import (
|
|||
TaskNotSetError,
|
||||
)
|
||||
|
||||
from ayon_core.hosts.traypublisher.api.plugin import TrayPublishCreator
|
||||
from ayon_core.hosts.traypublisher.batch_parsing import (
|
||||
from ayon_traypublisher.api.plugin import TrayPublishCreator
|
||||
from ayon_traypublisher.batch_parsing import (
|
||||
get_folder_entity_from_filename
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ from ayon_core.pipeline import (
|
|||
CreatedInstance,
|
||||
CreatorError
|
||||
)
|
||||
from ayon_core.hosts.traypublisher.api.plugin import TrayPublishCreator
|
||||
from ayon_traypublisher.api.plugin import TrayPublishCreator
|
||||
|
||||
|
||||
class OnlineCreator(TrayPublishCreator):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue