Return metadata for file_hash, or None if not found.
(self, file_hash: str)
| 28 | return file_hash in self._data |
| 29 | |
| 30 | def get(self, file_hash: str) -> dict | None: |
| 31 | """Return metadata for file_hash, or None if not found.""" |
| 32 | return self._data.get(file_hash) |
| 33 | |
| 34 | def all_entries(self) -> dict[str, dict]: |
| 35 | """Return a shallow copy of all hash -> metadata entries.""" |
no outgoing calls