(self, name: str)
| 259 | self.dirty_shards.clear() |
| 260 | |
| 261 | def commit_path(self, name: str) -> None: |
| 262 | i = self._shard_index(name) |
| 263 | if i in self.dirty_shards: |
| 264 | self.dbs[i].commit() |
| 265 | self.dirty_shards.discard(i) |
| 266 | |
| 267 | def list_all(self) -> Iterable[str]: |
| 268 | for db in self.dbs: |
nothing calls this directly
no test coverage detected