summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/todos.py
diff options
context:
space:
mode:
authorNejc Habjan <hab.nejc@gmail.com>2021-12-01 01:03:30 +0100
committerNejc Habjan <hab.nejc@gmail.com>2021-12-01 01:03:30 +0100
commit79e785e765f4219fe6001ef7044235b82c5e7754 (patch)
treeba7802c55cf233031b77e719cebb59639ba61f8b /gitlab/v4/objects/todos.py
parentaf0cb4d18b8bfbc0624ea2771d73544dc1b24b54 (diff)
downloadgitlab-docs/sphinx-annotations.tar.gz
docs: use annotations for return typesdocs/sphinx-annotations
Diffstat (limited to 'gitlab/v4/objects/todos.py')
-rw-r--r--gitlab/v4/objects/todos.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/todos.py b/gitlab/v4/objects/todos.py
index 9f8c52d..e441eff 100644
--- a/gitlab/v4/objects/todos.py
+++ b/gitlab/v4/objects/todos.py
@@ -53,6 +53,6 @@ class TodoManager(ListMixin, DeleteMixin, RESTManager):
GitlabTodoError: If the server failed to perform the request
Returns:
- int: The number of todos marked done
+ The number of todos marked done
"""
self.gitlab.http_post("/todos/mark_as_done", **kwargs)