From 1b37514c06822ad7aebb88271c1ada753d818c9c Mon Sep 17 00:00:00 2001 From: thsmale Date: Sun, 30 Nov 2025 14:28:48 -0800 Subject: [PATCH] typo in docs: replace Non with None --- docs/how_to_guides/querystring_validation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how_to_guides/querystring_validation.rst b/docs/how_to_guides/querystring_validation.rst index 0234347..020ce39 100644 --- a/docs/how_to_guides/querystring_validation.rst +++ b/docs/how_to_guides/querystring_validation.rst @@ -131,7 +131,7 @@ to a list using a ``BeforeValidator``, return [value] class Query(BaseModel): - keys: Annotated[Optional[List[str]], BeforeValidator(_to_list)] = Non + keys: Annotated[Optional[List[str]], BeforeValidator(_to_list)] = None @app.route("/") @validate_querystring(Query)