Skip to content

Commit

Permalink
maint: Remove use of internal attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerSelwyn committed Jul 7, 2024
1 parent 11e65fe commit 3d17973
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/o365/todo.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def _update_extra_state_attributes(self, todos):
todo = {
ATTR_SUBJECT: item.subject,
ATTR_TODO_ID: item.task_id,
ATTR_STATUS: item._Task__status,
ATTR_STATUS: item.status,
}
if item.body:
todo[ATTR_DESCRIPTION] = item.body
Expand Down

0 comments on commit 3d17973

Please sign in to comment.