Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Houdini: Use new interface class name for publish host #4220

Merged
merged 1 commit into from
Dec 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions openpype/hosts/houdini/api/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import hou # noqa

from openpype.host import HostBase, IWorkfileHost, ILoadHost, INewPublisher
from openpype.host import HostBase, IWorkfileHost, ILoadHost, IPublishHost

import pyblish.api

Expand Down Expand Up @@ -40,7 +40,7 @@
INVENTORY_PATH = os.path.join(PLUGINS_DIR, "inventory")


class HoudiniHost(HostBase, IWorkfileHost, ILoadHost, INewPublisher):
class HoudiniHost(HostBase, IWorkfileHost, ILoadHost, IPublishHost):
name = "houdini"

def __init__(self):
Expand Down