(self)
| 61 | |
| 62 | |
| 63 | def clear(self) -> None: |
| 64 | if os.path.isfile(self.json_path): |
| 65 | os.remove(self.json_path) |
| 66 | self.json_data = {} |
| 67 | self.commit_to_disk() |
| 68 | |
| 69 | class _LocalStorage: |
| 70 | def __init__(self) -> None: |
nothing calls this directly
no test coverage detected