From d08f61a7f3946c7daefe498789ba124905ad6e5c Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 24 Feb 2025 08:11:11 -0500 Subject: [PATCH] allow None in Note title --- journal/apis/note.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/journal/apis/note.py b/journal/apis/note.py index 2aef92c3..5d9f73e7 100644 --- a/journal/apis/note.py +++ b/journal/apis/note.py @@ -14,7 +14,7 @@ class NoteSchema(Schema): uuid: str post_id: int | None = Field(alias="latest_post_id") item: ItemSchema - title: str + title: str | None content: str sensitive: bool = False progress_type: Note.ProgressType | None = None