Skip to content

Commit

Permalink
whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoralsky committed May 2, 2019
1 parent 4d31b9c commit c91230e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gitlab/v4/objects.py
Expand Up @@ -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'}
Expand Down

0 comments on commit c91230e

Please sign in to comment.