(data: bytes)
| 7849 | |
| 7850 | @staticmethod |
| 7851 | def decode_text(data: bytes) -> str: |
| 7852 | return data.decode("utf-8", errors="ignore") |
| 7853 | |
| 7854 | @staticmethod |
| 7855 | def encode_sse_payload(payload: BaseModel | Dict[str, Any]) -> bytes: |
no test coverage detected