renamed maya to addon

This commit is contained in:
Jakub Trllo 2022-08-26 15:14:05 +02:00
parent 4a35b4bea7
commit 7af8e89984
2 changed files with 4 additions and 4 deletions

View file

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

View file

@ -5,8 +5,8 @@ from openpype.modules.interfaces import IHostAddon
MAYA_ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
class OpenPypeMaya(OpenPypeModule, IHostAddon):
name = "openpype_maya"
class MayaAddon(OpenPypeModule, IHostAddon):
name = "maya"
host_name = "maya"
def initialize(self, module_settings):