fix imports

This commit is contained in:
Jakub Trllo 2024-05-24 10:36:26 +02:00
parent 7fd8ca81e4
commit a75af77907
8 changed files with 10 additions and 12 deletions

View file

@ -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(

View file

@ -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):

View file

@ -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):

View file

@ -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

View file

@ -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):

View file

@ -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)

View file

@ -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
)

View file

@ -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):