From d7293fe7b9a5a61d59bc839c3f1f35f76ce80076 Mon Sep 17 00:00:00 2001 From: kedod Date: Sun, 5 May 2024 17:02:21 +0200 Subject: [PATCH] Change lines --- docs/usage/dto/1-abstract-dto.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/usage/dto/1-abstract-dto.rst b/docs/usage/dto/1-abstract-dto.rst index ffd2af3408..bcb87ee6a6 100644 --- a/docs/usage/dto/1-abstract-dto.rst +++ b/docs/usage/dto/1-abstract-dto.rst @@ -353,13 +353,13 @@ Litestar offers paginated response wrapper types, and DTO Factory types can hand .. literalinclude:: /examples/data_transfer_objects/factory/paginated_return_data.py :language: python - :lines: 9-11,26-40 + :lines: 9-11,22-39 .. dropdown:: Full Code (click to expand) .. literalinclude:: /examples/data_transfer_objects/factory/paginated_return_data.py :language: python - :emphasize-lines: 9,26-40 + :emphasize-lines: 9,22-39 The DTO is defined and configured, in our example, we're excluding ``password`` and ``created_at`` fields from the final representation of our users.