(self)
| 67 | |
| 68 | |
| 69 | def clear(self) -> None: |
| 70 | if os.path.isfile(self.json_path): |
| 71 | os.remove(self.json_path) |
| 72 | self.json_data = {} |
| 73 | self.commit_to_disk() |
| 74 | |
| 75 | class _LocalStorage: |
| 76 | def __init__(self) -> None: |
nothing calls this directly
no test coverage detected