changed import of 'BuildWorkfile' in code

This commit is contained in:
Jakub Trllo 2022-08-09 15:11:33 +02:00
parent 01d87ba032
commit 65268fbc09
3 changed files with 3 additions and 3 deletions

View file

@ -6,9 +6,9 @@ from Qt import QtWidgets, QtGui
import maya.utils
import maya.cmds as cmds
from openpype.api import BuildWorkfile
from openpype.settings import get_project_settings
from openpype.pipeline import legacy_io
from openpype.pipeline.workfile import BuildWorkfile
from openpype.tools.utils import host_tools
from openpype.hosts.maya.api import lib, lib_rendersettings
from .lib import get_main_window, IS_HEADLESS

View file

@ -21,7 +21,6 @@ from openpype.client import (
)
from openpype.api import (
Logger,
BuildWorkfile,
get_version_from_path,
get_current_project_settings,
)
@ -40,6 +39,7 @@ from openpype.pipeline import (
Anatomy,
)
from openpype.pipeline.context_tools import get_current_project_asset
from openpype.pipeline.workfile import BuildWorkfile
from . import gizmo_menu

View file

@ -9,7 +9,6 @@ import pyblish.api
import openpype
from openpype.api import (
Logger,
BuildWorkfile,
get_current_project_settings
)
from openpype.lib import register_event_callback
@ -22,6 +21,7 @@ from openpype.pipeline import (
deregister_inventory_action_path,
AVALON_CONTAINER_ID,
)
from openpype.pipeline.workfile import BuildWorkfile
from openpype.tools.utils import host_tools
from .command import viewer_update_and_undo_stop