renamed blender to addon

This commit is contained in:
Jakub Trllo 2022-08-26 15:15:14 +02:00
parent 621b2dbe88
commit a991d4b6fe
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
from .module import BlenderModule
from .addon import BlenderAddon
__all__ = (
"BlenderModule",
"BlenderAddon",
)

View file

@ -5,7 +5,7 @@ from openpype.modules.interfaces import IHostAddon
BLENDER_ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
class BlenderModule(OpenPypeModule, IHostAddon):
class BlenderAddon(OpenPypeModule, IHostAddon):
name = "blender"
host_name = "blender"