(self, content: Any)
| 62 | """ |
| 63 | |
| 64 | def render(self, content: Any) -> bytes: |
| 65 | assert ujson is not None, "ujson must be installed to use UJSONResponse" |
| 66 | return ujson.dumps(content, ensure_ascii=False).encode("utf-8") |
| 67 | |
| 68 | |
| 69 | @deprecated( |
no test coverage detected