summaryrefslogtreecommitdiff
path: root/gitlab
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab')
-rw-r--r--gitlab/v4/objects.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py
index 714c118..353f854 100644
--- a/gitlab/v4/objects.py
+++ b/gitlab/v4/objects.py
@@ -1035,8 +1035,7 @@ class ProjectTag(ObjectDeleteMixin, RESTObject):
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'}