def register(self, key: Hashable, value: Any):
"""
Registers any key / value combination.
Args:
key: The hashable key that identifies the object
value: The value to store in the registry
"""
self._registry[key] = value
评论列表
文章目录