(self, note: Optional[str])
| 708 | return detail |
| 709 | |
| 710 | def _normalize_metadata_note(self, note: Optional[str]) -> str: |
| 711 | if note is None: |
| 712 | return "" |
| 713 | return str(note).strip()[: self.MAX_METADATA_NOTE_LENGTH] |
| 714 | |
| 715 | def _normalize_metadata_tags(self, tags: Any) -> list[str]: |
| 716 | if not tags: |
no outgoing calls
no test coverage detected