(self)
| 82 | self.storage_backend_instance = JSONStorageBackend() |
| 83 | |
| 84 | def refresh(self) -> None: |
| 85 | self.storage_backend_instance.refresh() |
| 86 | |
| 87 | def get_item(self, item: str, default = None) -> any: |
| 88 | return self.storage_backend_instance.get_item(item, default) |
nothing calls this directly
no outgoing calls
no test coverage detected