diff options
author | Karol Ossowski <karol.ossowski@gmail.com> | 2019-05-02 14:08:32 +0200 |
---|---|---|
committer | Karol Ossowski <karol.ossowski@gmail.com> | 2019-05-02 14:08:32 +0200 |
commit | c91230e4863932ef8b8781835a37077301fd7440 (patch) | |
tree | 1f43047309fc0c558a442acc89a154d224da53e3 /gitlab/v4/objects.py | |
parent | 4d31b9c7b9bddf6ae2da41d2f87c6e92f97122e0 (diff) | |
download | gitlab-c91230e4863932ef8b8781835a37077301fd7440.tar.gz |
whitespaces
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r-- | gitlab/v4/objects.py | 4 |
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'} |