summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects
diff options
context:
space:
mode:
authorJohn L. Villalovos <john@sodarock.com>2021-04-17 14:59:35 -0700
committerJohn L. Villalovos <john@sodarock.com>2021-04-18 08:26:07 -0700
commit40f4ab20ba0903abd3d5c6844fc626eb264b9a6a (patch)
treeb4b8ca325f0e96a2d07c0bf0b3e99153ef7f4f56 /gitlab/v4/objects
parentff21eb664871904137e6df18308b6e90290ad490 (diff)
downloadgitlab-40f4ab20ba0903abd3d5c6844fc626eb264b9a6a.tar.gz
chore: fix F841 errors reported by flake8
Local variable name is assigned to but never used https://www.flake8rules.com/rules/F841.html
Diffstat (limited to 'gitlab/v4/objects')
-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 33ad7ee..7dc7a51 100644
--- a/gitlab/v4/objects/todos.py
+++ b/gitlab/v4/objects/todos.py
@@ -48,4 +48,4 @@ class TodoManager(ListMixin, DeleteMixin, RESTManager):
Returns:
int: The number of todos maked done
"""
- result = self.gitlab.http_post("/todos/mark_as_done", **kwargs)
+ self.gitlab.http_post("/todos/mark_as_done", **kwargs)