(self, key: str)
| 61 | self.commit_to_disk() |
| 62 | |
| 63 | def remove_item(self, key: str) -> None: |
| 64 | if key in self.json_data: |
| 65 | self.json_data.pop(key) |
| 66 | self.commit_to_disk() |
| 67 | |
| 68 | |
| 69 | def clear(self) -> None: |
nothing calls this directly
no test coverage detected