From 717462f50144e42764be7b2d5549a81e12b2832f Mon Sep 17 00:00:00 2001 From: mecaneer23 Date: Wed, 13 Mar 2024 11:35:41 -0500 Subject: [PATCH] fix: clarify docstring --- src/class_todo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/class_todo.py b/src/class_todo.py index 11e9c05..085547e 100644 --- a/src/class_todo.py +++ b/src/class_todo.py @@ -189,7 +189,7 @@ def __init__(self, iterable: Iterable[Todo]) -> None: class TodoList(NamedTuple): """ An object representing the todos - and a cursor within the list + and a cursor (int) within the list """ todos: Todos