(self, key)
| 263 | raise KeyError(f"{key} is not a file in the archive") |
| 264 | |
| 265 | def __contains__(self, key): |
| 266 | return (key in self._files or key in self.files) |
| 267 | |
| 268 | def __repr__(self): |
| 269 | # Get filename or default to `object` |
nothing calls this directly
no outgoing calls
no test coverage detected