changed how schemas are get from openpype

This commit is contained in:
iLLiCiTiT 2021-08-09 18:25:07 +02:00
parent 5db15b273e
commit 9d7f0db6d8

View file

@ -977,11 +977,11 @@ class ModuleSettingsDef:
return self._id
@abstractmethod
def get_system_schemas(self):
def get_settings_schemas(self, schema_type):
pass
@abstractmethod
def get_project_schemas(self):
def get_dynamic_schemas(self, schema_type):
pass
@abstractmethod