From 98e8c8b5f2b0e591d2089dcb7bfb9058c9389168 Mon Sep 17 00:00:00 2001 From: Lefteris Chatzimparmpas Date: Thu, 22 Jan 2026 18:53:26 +0200 Subject: [PATCH] Fix return values of quick add meta structure --- todoist_api_python/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/todoist_api_python/models.py b/todoist_api_python/models.py index 99f6496..24bd33c 100644 --- a/todoist_api_python/models.py +++ b/todoist_api_python/models.py @@ -89,9 +89,9 @@ class Meta(JSONPyWizard): class _(JSONPyWizard.Meta): # noqa:N801 v1 = True - project: tuple[str, str] - section: tuple[str, str] - assignee: tuple[str, str] + project: tuple[str | None, str | None] + section: tuple[str | None, str | None] + assignee: tuple[str | None, str | None] labels: dict[int, str] due: Due | None deadline: Deadline | None