构造消息数组
(msg: str)
| 171 | @staticmethod |
| 172 | @abc.abstractmethod |
| 173 | def _construct(msg: str) -> Iterable[TMS]: |
| 174 | """构造消息数组""" |
| 175 | raise NotImplementedError |
| 176 | |
| 177 | def __add__( # pyright: ignore[reportIncompatibleMethodOverride] |
| 178 | self, other: str | TMS | Iterable[TMS] |