(self, key: str)
| 54 | self.commit_to_disk() |
| 55 | |
| 56 | def remove_item(self, key: str) -> None: |
| 57 | if key in self.json_data: |
| 58 | self.json_data.pop(key) |
| 59 | self.commit_to_disk() |
| 60 | |
| 61 | |
| 62 | # def get_new_number(self): |
nothing calls this directly
no test coverage detected