From 5992c5f950187424a4ff3079b56e460b5d668ffd Mon Sep 17 00:00:00 2001 From: Ondrej Samohel Date: Fri, 16 Jul 2021 16:25:21 +0200 Subject: [PATCH] openpype conformation --- openpype/hosts/houdini/plugins/create/create_composite.py | 4 ++-- .../hosts/houdini/plugins/create/create_redshift_rop.py | 5 ++--- .../hosts/houdini/plugins/create/create_remote_publish.py | 7 +++---- openpype/hosts/houdini/plugins/create/create_usd.py | 4 ++-- openpype/hosts/houdini/plugins/create/create_usd_model.py | 5 ++--- .../hosts/houdini/plugins/create/create_usd_workspaces.py | 4 ++-- openpype/hosts/houdini/plugins/create/create_usdrender.py | 5 ++--- 7 files changed, 15 insertions(+), 19 deletions(-) diff --git a/openpype/hosts/houdini/plugins/create/create_composite.py b/openpype/hosts/houdini/plugins/create/create_composite.py index 4f91fa2258..7293669bef 100644 --- a/openpype/hosts/houdini/plugins/create/create_composite.py +++ b/openpype/hosts/houdini/plugins/create/create_composite.py @@ -1,7 +1,7 @@ -from avalon import houdini +from openpype.hosts.houdini.api import plugin -class CreateCompositeSequence(houdini.Creator): +class CreateCompositeSequence(plugin.Creator): """Composite ROP to Image Sequence""" label = "Composite (Image Sequence)" diff --git a/openpype/hosts/houdini/plugins/create/create_redshift_rop.py b/openpype/hosts/houdini/plugins/create/create_redshift_rop.py index 0babc17c6b..40d2ac58c7 100644 --- a/openpype/hosts/houdini/plugins/create/create_redshift_rop.py +++ b/openpype/hosts/houdini/plugins/create/create_redshift_rop.py @@ -1,9 +1,8 @@ import hou - -from avalon import houdini +from openpype.hosts.houdini.api import plugin -class CreateRedshiftROP(houdini.Creator): +class CreateRedshiftROP(plugin.Creator): """Redshift ROP""" label = "Redshift ROP" diff --git a/openpype/hosts/houdini/plugins/create/create_remote_publish.py b/openpype/hosts/houdini/plugins/create/create_remote_publish.py index bc6cf5d949..b9782209cd 100644 --- a/openpype/hosts/houdini/plugins/create/create_remote_publish.py +++ b/openpype/hosts/houdini/plugins/create/create_remote_publish.py @@ -1,9 +1,8 @@ -from avalon import houdini - -from colorbleed.houdini import lib +from openpype.hosts.houdini.api import plugin +from openpype.hosts.houdini.api import lib -class CreateRemotePublish(houdini.Creator): +class CreateRemotePublish(plugin.Creator): """Create Remote Publish Submission Settings node.""" label = "Remote Publish" diff --git a/openpype/hosts/houdini/plugins/create/create_usd.py b/openpype/hosts/houdini/plugins/create/create_usd.py index 5ca8875dc0..642612f465 100644 --- a/openpype/hosts/houdini/plugins/create/create_usd.py +++ b/openpype/hosts/houdini/plugins/create/create_usd.py @@ -1,7 +1,7 @@ -from avalon import houdini +from openpype.hosts.houdini.api import plugin -class CreateUSD(houdini.Creator): +class CreateUSD(plugin.Creator): """Universal Scene Description""" label = "USD" diff --git a/openpype/hosts/houdini/plugins/create/create_usd_model.py b/openpype/hosts/houdini/plugins/create/create_usd_model.py index 96563f2f91..5276211f2c 100644 --- a/openpype/hosts/houdini/plugins/create/create_usd_model.py +++ b/openpype/hosts/houdini/plugins/create/create_usd_model.py @@ -1,10 +1,9 @@ import re - -from avalon import api +from openpype.hosts.houdini.api import plugin import hou -class CreateUSDModel(api.Creator): +class CreateUSDModel(plugin.Creator): """Author USD Model""" label = "USD Model" diff --git a/openpype/hosts/houdini/plugins/create/create_usd_workspaces.py b/openpype/hosts/houdini/plugins/create/create_usd_workspaces.py index a2309122e4..fc8ef5c810 100644 --- a/openpype/hosts/houdini/plugins/create/create_usd_workspaces.py +++ b/openpype/hosts/houdini/plugins/create/create_usd_workspaces.py @@ -1,8 +1,8 @@ -from avalon import api +from openpype.hosts.houdini.api import plugin import hou -class _USDWorkspace(api.Creator): +class _USDWorkspace(plugin.Creator): """Base class to create pre-built USD Workspaces""" node_name = None diff --git a/openpype/hosts/houdini/plugins/create/create_usdrender.py b/openpype/hosts/houdini/plugins/create/create_usdrender.py index 1c488f381b..34e1a9cc54 100644 --- a/openpype/hosts/houdini/plugins/create/create_usdrender.py +++ b/openpype/hosts/houdini/plugins/create/create_usdrender.py @@ -1,9 +1,8 @@ import hou - -from avalon import houdini +from openpype.hosts.houdini.api import plugin -class CreateUSDRender(houdini.Creator): +class CreateUSDRender(plugin.Creator): """USD Render ROP in /stage""" label = "USD Render"