(self)
| 72 | # return new |
| 73 | |
| 74 | def clear(self) -> None: |
| 75 | if os.path.isfile(self.json_path): |
| 76 | os.remove(self.json_path) |
| 77 | self.json_data = {} |
| 78 | self.commit_to_disk() |
| 79 | |
| 80 | class _LocalStorage: |
| 81 | def __init__(self) -> None: |
nothing calls this directly
no test coverage detected