(self)
| 24 | |
| 25 | @property |
| 26 | def addons(self) -> Dict[str, ChargebeeObjMetadata]: |
| 27 | return self._get_items()["addons"] # type: ignore[no-any-return] |
| 28 | |
| 29 | def _get_items(self) -> dict: # type: ignore[type-arg] |
| 30 | chargebee_items = self._cache.get(CHARGEBEE_CACHE_KEY) |
nothing calls this directly
no test coverage detected