Skip to content

Commit 85267e1

Browse files
Add is_urgent field to Reminder model
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6a97b46 commit 85267e1

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

tests/data/test_defaults.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ class PaginatedItems(TypedDict):
274274
"notify_uid": "34567",
275275
"type": "relative",
276276
"is_deleted": False,
277+
"is_urgent": False,
277278
"minute_offset": 30,
278279
"due": DEFAULT_DUE_RESPONSE,
279280
"service": "push",

todoist_api_python/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ class _(JSONPyWizard.Meta): # noqa:N801
233233
notify_uid: str
234234
type: ReminderType
235235
is_deleted: bool
236+
is_urgent: bool
236237

237238
minute_offset: int | None = None
238239
due: Due | None = None

0 commit comments

Comments
 (0)