(self, attachment_id: str)
| 220 | self._save_manifest() |
| 221 | |
| 222 | def get(self, attachment_id: str) -> AttachmentRecord | None: |
| 223 | return self._records.get(attachment_id) |
| 224 | |
| 225 | def to_message_block(self, attachment_id: str) -> MessageBlock: |
| 226 | record = self._records.get(attachment_id) |
no outgoing calls
no test coverage detected