Merge "Make get_plugin_type classmethod"

This commit is contained in:
Jenkins 2016-06-30 07:59:28 +00:00 committed by Gerrit Code Review
commit f00073c55a

View File

@ -207,7 +207,8 @@ class TaasPluginBase(service_base.ServicePluginBase):
def get_plugin_description(self):
return "Tap Service Plugin"
def get_plugin_type(self):
@classmethod
def get_plugin_type(cls):
return constants.TAAS
@abc.abstractmethod