Added list functionality to registry object (#4946)
* Added list functionality to registry object * Fix indentation * Punctuation fixes for comments.
This commit is contained in:
parent
3ccdb2b695
commit
7cd00438e7
@ -67,6 +67,14 @@ class Registry(object):
|
||||
stack = traceback.extract_stack()
|
||||
self._registry[name] = {_TYPE_TAG: candidate, _LOCATION_TAG: stack[2]}
|
||||
|
||||
def list(self):
|
||||
"""Lists registered items.
|
||||
|
||||
Returns:
|
||||
A list of names of registered objects.
|
||||
"""
|
||||
return self._registry.keys()
|
||||
|
||||
def lookup(self, name):
|
||||
"""Looks up "name".
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user