From 7da4475432f7ef320c4678377e5bdfbb63c7ffaf Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 5 May 2024 13:42:13 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en/docs/tutorial/query-params-str-validations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/docs/tutorial/query-params-str-validations.md b/docs/en/docs/tutorial/query-params-str-validations.md index 6762dc2220..8d77d73c30 100644 --- a/docs/en/docs/tutorial/query-params-str-validations.md +++ b/docs/en/docs/tutorial/query-params-str-validations.md @@ -390,7 +390,7 @@ But we are now declaring it with `Query`, for example like: ```Python q: Annotated[str | None, Query(min_length=3)] = None ``` - + === "Python 3.9+ Annotated" ```Python @@ -402,7 +402,7 @@ But we are now declaring it with `Query`, for example like: ```Python q: str | None = Query(default=None, min_length=3) ``` - + === "Python 3.9+ non-Annotated" ```Python