renamed nuke to addon

This commit is contained in:
Jakub Trllo 2022-08-26 15:17:51 +02:00
parent 511bf71f61
commit 310bc6b705
2 changed files with 4 additions and 4 deletions

View file

@ -1,10 +1,10 @@
from .module import (
from .addon import (
NUKE_ROOT_DIR,
NukeModule,
NukeAddon,
)
__all__ = (
"NUKE_ROOT_DIR",
"NukeModule",
"NukeAddon",
)

View file

@ -6,7 +6,7 @@ from openpype.modules.interfaces import IHostAddon
NUKE_ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
class NukeModule(OpenPypeModule, IHostAddon):
class NukeAddon(OpenPypeModule, IHostAddon):
name = "nuke"
host_name = "nuke"