summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/todos.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/todos.py')
-rw-r--r--gitlab/v4/objects/todos.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/gitlab/v4/objects/todos.py b/gitlab/v4/objects/todos.py
index 429005c..edde46e 100644
--- a/gitlab/v4/objects/todos.py
+++ b/gitlab/v4/objects/todos.py
@@ -4,6 +4,12 @@ from gitlab.base import * # noqa
from gitlab.mixins import * # noqa
+__all__ = [
+ "Todo",
+ "TodoManager",
+]
+
+
class Todo(ObjectDeleteMixin, RESTObject):
@cli.register_custom_action("Todo")
@exc.on_http_error(exc.GitlabTodoError)