(self, key)
| 24 | return self._module_dict |
| 25 | |
| 26 | def get(self, key): |
| 27 | return self._module_dict.get(key, None) |
| 28 | |
| 29 | def registe_with_name(self, module_name=None, force=False): |
| 30 | return partial(self.register, module_name=module_name, force=force) |
no outgoing calls
no test coverage detected