File size: 164 Bytes
587b6c9 |
1 2 3 4 5 6 7 8 9 10 11 |
def os_cache(x):
return x
def create(*args, **kwargs):
class T:
def load_registry(self, *args, **kwargs):
return None
return T()
|
587b6c9 |
1 2 3 4 5 6 7 8 9 10 11 |
def os_cache(x):
return x
def create(*args, **kwargs):
class T:
def load_registry(self, *args, **kwargs):
return None
return T()
|