From 3648dde1ea839e6abb6b7c12c8716daae9a70a00 Mon Sep 17 00:00:00 2001 From: Vincent Maillol Date: Fri, 1 Oct 2021 08:51:50 +0200 Subject: [PATCH] Fix doc example --- README.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.rst b/README.rst index 3c5eb03..b8bc2d7 100644 --- a/README.rst +++ b/README.rst @@ -324,6 +324,8 @@ If your method has lot of parameters you can group them together inside one or s .. code-block:: python3 + from aiohttp_pydantic.injectors import Group + class Pagination(Group): page_num: int = 1 page_size: int = 15