mirror of https://github.com/tiangolo/fastapi.git
♻ Remove `media_type` from `ORJSONResponse` as it's inherited from the parent class (#5805)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
This commit is contained in:
parent
503cec5649
commit
52fd0afc94
|
|
@ -27,8 +27,6 @@ class UJSONResponse(JSONResponse):
|
||||||
|
|
||||||
|
|
||||||
class ORJSONResponse(JSONResponse):
|
class ORJSONResponse(JSONResponse):
|
||||||
media_type = "application/json"
|
|
||||||
|
|
||||||
def render(self, content: Any) -> bytes:
|
def render(self, content: Any) -> bytes:
|
||||||
assert orjson is not None, "orjson must be installed to use ORJSONResponse"
|
assert orjson is not None, "orjson must be installed to use ORJSONResponse"
|
||||||
return orjson.dumps(
|
return orjson.dumps(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue