summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects.py
diff options
context:
space:
mode:
authorKarol Ossowski <karol.ossowski@gmail.com>2019-05-02 14:08:32 +0200
committerKarol Ossowski <karol.ossowski@gmail.com>2019-05-02 14:08:32 +0200
commitc91230e4863932ef8b8781835a37077301fd7440 (patch)
tree1f43047309fc0c558a442acc89a154d224da53e3 /gitlab/v4/objects.py
parent4d31b9c7b9bddf6ae2da41d2f87c6e92f97122e0 (diff)
downloadgitlab-c91230e4863932ef8b8781835a37077301fd7440.tar.gz
whitespaces
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r--gitlab/v4/objects.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py
index 800b4b5..ed559cf 100644
--- a/gitlab/v4/objects.py
+++ b/gitlab/v4/objects.py
@@ -1184,13 +1184,15 @@ class ProjectRegistryRepository(ObjectDeleteMixin, RESTObject):
class ProjectRegistryRepositoryManager(DeleteMixin, ListMixin, RESTManager):
- _path= '/projects/%(project_id)s/registry/repositories'
+ _path = '/projects/%(project_id)s/registry/repositories'
_obj_cls = ProjectRegistryRepository
_from_parent_attrs = {'project_id': 'id'}
+
class ProjectRegistryTag(ObjectDeleteMixin, RESTObject):
_id_attr = 'name'
+
class ProjectRegistryTagManager(DeleteMixin, RetrieveMixin, RESTManager):
_obj_cls = ProjectRegistryTag
_from_parent_attrs = {'project_id': 'project_id', 'repository_id': 'id'}