From 3d2e57284f444f59ed001769ce96fd8763ba697d 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 7373834c06..72f99577a8 100644 --- a/docs/usage/dto/1-abstract-dto.rst +++ b/docs/usage/dto/1-abstract-dto.rst @@ -367,13 +367,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.