blob: f40150835c0b13d33ada263e5263d679aa3c875a [file] [log] [blame]
# pylint: disable=missing-docstring,no-init,unused-argument,invalid-name,too-few-public-methods
class A:
def __init__(self):
self.store = {}
def get(self, key, default=None):
return self.store.get(key, default)
class B(A):
def get_memo(self, obj):
return super().get(obj)