(self, context: AdaptContext | None = None)
| 213 | return self._obj |
| 214 | |
| 215 | def as_bytes(self, context: AdaptContext | None = None) -> bytes: |
| 216 | conn = context.connection if context else None |
| 217 | enc = conn_encoding(conn) |
| 218 | return self._obj.encode(enc) |
| 219 | |
| 220 | def format(self, *args: Any, **kwargs: Any) -> Composed: |
| 221 | """ |