Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fastapi_contrib/common/responses.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import typing
import ujson

from starlette.responses import UJSONResponse as BaseUJSONResponse
from starlette.responses import JSONResponse


class UJSONResponse(BaseUJSONResponse):
class UJSONResponse(JSONResponse):
Comment thread
gasabr marked this conversation as resolved.
"""
Custom Response, based on default UJSONResponse, but with differences:
* Allows to have forward slashes inside strings of JSON
Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Sphinx>=2.4.3
twine>=3.1.1

contextvars==2.4;python_version<"3.7"
fastapi>=0.63.0
fastapi>=0.65.1
Comment thread
gasabr marked this conversation as resolved.
Outdated
jaeger-client>=4.1.0
opentracing>=2.2.0
motor>=2.0.0
Expand Down