(self, other: str | FakeMessageSegment | Iterable[FakeMessageSegment])
| 69 | |
| 70 | @override |
| 71 | def __add__(self, other: str | FakeMessageSegment | Iterable[FakeMessageSegment]): |
| 72 | other = escape_text(other) if isinstance(other, str) else other |
| 73 | return super().__add__(other) |
| 74 | |
| 75 | |
| 76 | def make_fake_event( |
nothing calls this directly
no test coverage detected