From 7f78ff555f9220d63ed03a81e1c5f5a70bbf5258 Mon Sep 17 00:00:00 2001 From: Uladzislau Hramyka Date: Thu, 10 Nov 2022 04:09:25 +0300 Subject: [PATCH] fix(Comment): remove deprecated field is_summary (#7) --- shikithon/models/comment.py | 1 - 1 file changed, 1 deletion(-) diff --git a/shikithon/models/comment.py b/shikithon/models/comment.py index 85ada7ff..97b8b877 100644 --- a/shikithon/models/comment.py +++ b/shikithon/models/comment.py @@ -18,6 +18,5 @@ class Comment(BaseModel): created_at: datetime updated_at: datetime is_offtopic: bool - is_summary: Optional[bool] can_be_edited: Optional[bool] user: Optional[User]