Merge "Raise NotImplementedError instead of NotImplemented"

This commit is contained in:
Jenkins 2016-09-30 06:06:48 +00:00 committed by Gerrit Code Review
commit 14e8bee51b
1 changed files with 2 additions and 2 deletions

View File

@ -65,11 +65,11 @@ class BaseCommand(command.Command):
@property @property
def supported_file_formats(self): def supported_file_formats(self):
raise NotImplemented() raise NotImplementedError()
@property @property
def allowed_attr_types(self): def allowed_attr_types(self):
raise NotImplemented() raise NotImplementedError()
@six.add_metaclass(abc.ABCMeta) @six.add_metaclass(abc.ABCMeta)