From 33b492216dae6ab2227095d044b8e3c830a6bec3 Mon Sep 17 00:00:00 2001 From: Ethon Date: Tue, 25 Jan 2022 17:52:20 +0800 Subject: [PATCH] fix ident --- docs/models/inheritance.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/models/inheritance.md b/docs/models/inheritance.md index 0cc1c9f..e4b565f 100644 --- a/docs/models/inheritance.md +++ b/docs/models/inheritance.md @@ -596,7 +596,7 @@ class Book(ormar.Model): database = database tablename = "book" - __queryset_cls__ = MyQuerySetClass + __queryset_cls__ = MyQuerySetClass id: int = ormar.Integer(primary_key=True) name: str = ormar.String(max_length=32) @@ -604,4 +604,4 @@ class Book(ormar.Model): # when book not found, raise `404` in your view. book = await Book.objects.first_or_404(name="123") -``` \ No newline at end of file +```