🚨 fix 🐶

This commit is contained in:
Ondrej Samohel 2022-12-07 01:20:56 +01:00
parent d29a3ca437
commit 7327334226
No known key found for this signature in database
GPG key ID: 02376E18990A97C6
5 changed files with 4 additions and 10 deletions

View file

@ -6,7 +6,7 @@ from .pipeline import (
) )
from .lib import( from .lib import (
maintained_selection, maintained_selection,
lsattr, lsattr,
get_all_children get_all_children

View file

@ -15,11 +15,7 @@ from openpype.pipeline import (
from openpype.hosts.max.api.menu import OpenPypeMenu from openpype.hosts.max.api.menu import OpenPypeMenu
from openpype.hosts.max.api import lib from openpype.hosts.max.api import lib
from openpype.hosts.max import MAX_HOST_DIR from openpype.hosts.max import MAX_HOST_DIR
from openpype.pipeline.load import any_outdated_containers
from openpype.lib import (
register_event_callback,
emit_event,
)
from pymxs import runtime as rt # noqa from pymxs import runtime as rt # noqa
log = logging.getLogger("openpype.hosts.max") log = logging.getLogger("openpype.hosts.max")

View file

@ -4,7 +4,7 @@ import os
import pyblish.api import pyblish.api
from pymxs import runtime as rt from pymxs import runtime as rt
from openpype.pipeline import legacy_io, KnownPublishError from openpype.pipeline import legacy_io
class CollectWorkfile(pyblish.api.ContextPlugin): class CollectWorkfile(pyblish.api.ContextPlugin):

View file

@ -1,7 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import pyblish.api import pyblish.api
from openpype.pipeline import PublishValidationError from openpype.pipeline import PublishValidationError
from openpype.pipeline.publish import RepairAction
from pymxs import runtime as rt from pymxs import runtime as rt

View file

@ -4,4 +4,3 @@ from openpype.pipeline import install_host
host = MaxHost() host = MaxHost()
install_host(host) install_host(host)