Merge "Makes list method not abstract"

This commit is contained in:
Jenkins 2017-09-14 16:10:42 +00:00 committed by Gerrit Code Review
commit 12f69f7c1c
1 changed files with 1 additions and 2 deletions

View File

@ -110,7 +110,6 @@ class KeyManager(object):
"""
pass
@abc.abstractmethod
def list(self, context, object_type=None, metadata_only=False):
"""Lists the managed objects given the criteria.
@ -123,4 +122,4 @@ class KeyManager(object):
returned, depending on the metadata_only flag. If no objects are
found, an empty list should be returned instead.
"""
pass
return []