Skip to content

Commit 28672cb

Browse files
committed
Fix validation error.
1 parent 6bb998d commit 28672cb

File tree

1 file changed

+2
-2
lines changed
  • pyfunceble_webworker/routes/v1

1 file changed

+2
-2
lines changed

pyfunceble_webworker/routes/v1/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ def root(request: Request) -> Links:
107107

108108
return Links(
109109
documentation=DocumentationURL(
110-
swagger_ui=request.url_for("custom_doc"),
111-
redoc=request.url_for("custom_redoc"),
110+
swagger_ui=str(request.url_for("custom_doc")),
111+
redoc=str(request.url_for("custom_redoc")),
112112
),
113113
projects=ProjectsURL(),
114114
support=SupportURL(),

0 commit comments

Comments
 (0)