summaryrefslogtreecommitdiff
path: root/gitlab
diff options
context:
space:
mode:
authorSimon Hébert-Deschamps <hebs2011@usherbrooke.ca>2021-12-09 13:45:53 -0500
committerSimon Hébert-Deschamps <hebs2011@usherbrooke.ca>2021-12-09 13:45:53 -0500
commit124667bf16b1843ae52e65a3cc9b8d9235ff467e (patch)
tree10710091a9238ad4d7f82c7a7327ffc0f1b07369 /gitlab
parent494535337b71592effeca57bb1ff2e735ebeb58a (diff)
downloadgitlab-124667bf16b1843ae52e65a3cc9b8d9235ff467e.tar.gz
feat: add delete on package_file object
Diffstat (limited to 'gitlab')
-rw-r--r--gitlab/v4/objects/packages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/packages.py b/gitlab/v4/objects/packages.py
index 2313f3e..0461bdc 100644
--- a/gitlab/v4/objects/packages.py
+++ b/gitlab/v4/objects/packages.py
@@ -173,7 +173,7 @@ class ProjectPackageManager(ListMixin, GetMixin, DeleteMixin, RESTManager):
return cast(ProjectPackage, super().get(id=id, lazy=lazy, **kwargs))
-class ProjectPackageFile(RESTObject):
+class ProjectPackageFile(ObjectDeleteMixin, RESTObject):
pass