From b537b30ab1cff0e465d6e299c8e55740cca1ff85 Mon Sep 17 00:00:00 2001 From: Robert Lu Date: Mon, 11 Sep 2017 19:45:16 +0800 Subject: [PATCH] add list method --- gitlab/v4/objects.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 714c118c7..353f854eb 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -1035,8 +1035,7 @@ def set_release_description(self, description, **kwargs): self.release = server_data -class ProjectTagManager(GetMixin, CreateMixin, DeleteMixin, - RESTManager): +class ProjectTagManager(NoUpdateMixin, RESTManager): _path = '/projects/%(project_id)s/repository/tags' _obj_cls = ProjectTag _from_parent_attrs = {'project_id': 'id'}