Concatenated stripped first-line text, mainly for classification.
(self)
| 288 | |
| 289 | @property |
| 290 | def text(self) -> str: |
| 291 | """Concatenated stripped first-line text, mainly for classification.""" |
| 292 | return self.raws[0].strip() if self.raws else "" |
| 293 | |
| 294 | |
| 295 | def physical_kind(raw: str) -> str: |
no outgoing calls