Skip to content

Commit c91230e

Browse files
committed
whitespaces
1 parent 4d31b9c commit c91230e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gitlab/v4/objects.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1184,13 +1184,15 @@ class ProjectRegistryRepository(ObjectDeleteMixin, RESTObject):
11841184

11851185

11861186
class ProjectRegistryRepositoryManager(DeleteMixin, ListMixin, RESTManager):
1187-
_path= '/projects/%(project_id)s/registry/repositories'
1187+
_path = '/projects/%(project_id)s/registry/repositories'
11881188
_obj_cls = ProjectRegistryRepository
11891189
_from_parent_attrs = {'project_id': 'id'}
11901190

1191+
11911192
class ProjectRegistryTag(ObjectDeleteMixin, RESTObject):
11921193
_id_attr = 'name'
11931194

1195+
11941196
class ProjectRegistryTagManager(DeleteMixin, RetrieveMixin, RESTManager):
11951197
_obj_cls = ProjectRegistryTag
11961198
_from_parent_attrs = {'project_id': 'project_id', 'repository_id': 'id'}

0 commit comments

Comments
 (0)