summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/groups.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/groups.py')
-rw-r--r--gitlab/v4/objects/groups.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/groups.py b/gitlab/v4/objects/groups.py
index 33f5be1..8cb5052 100644
--- a/gitlab/v4/objects/groups.py
+++ b/gitlab/v4/objects/groups.py
@@ -183,7 +183,7 @@ class Group(SaveMixin, ObjectDeleteMixin, RESTObject):
if provider is not None:
path += f"/{provider}"
path += f"/{cn}"
- self.manager.gitlab.http_delete(path)
+ self.manager.gitlab.http_delete(path, **kwargs)
@cli.register_custom_action("Group")
@exc.on_http_error(exc.GitlabCreateError)