@@ -1960,7 +1960,7 @@ class ProjectPipelineJobsManager(ListMixin, RESTManager):
1960
1960
_path = '/projects/%(project_id)s/pipelines/%(pipeline_id)s/jobs'
1961
1961
_obj_cls = ProjectPipelineJob
1962
1962
_from_parent_attrs = {'project_id' : 'project_id' ,
1963
- 'pipeline_id' : 'id' }
1963
+ 'pipeline_id' : 'id' }
1964
1964
_list_filters = ('scope' ,)
1965
1965
1966
1966
@@ -2024,7 +2024,8 @@ def create(self, data, **kwargs):
2024
2024
return CreateMixin .create (self , data , path = path , ** kwargs )
2025
2025
2026
2026
2027
- class ProjectPipelineScheduleVariable (SaveMixin , ObjectDeleteMixin , RESTObject ):
2027
+ class ProjectPipelineScheduleVariable (SaveMixin , ObjectDeleteMixin ,
2028
+ RESTObject ):
2028
2029
_id_attr = 'key'
2029
2030
2030
2031
@@ -2034,7 +2035,7 @@ class ProjectPipelineScheduleVariableManager(CreateMixin, UpdateMixin,
2034
2035
'%(pipeline_schedule_id)s/variables' )
2035
2036
_obj_cls = ProjectPipelineScheduleVariable
2036
2037
_from_parent_attrs = {'project_id' : 'project_id' ,
2037
- 'pipeline_schedule_id' : 'id' }
2038
+ 'pipeline_schedule_id' : 'id' }
2038
2039
_create_attrs = (('key' , 'value' ), tuple ())
2039
2040
_update_attrs = (('key' , 'value' ), tuple ())
2040
2041
@@ -2069,10 +2070,6 @@ class ProjectPipelineScheduleManager(CRUDMixin, RESTManager):
2069
2070
('description' , 'ref' , 'cron' , 'cron_timezone' , 'active' ))
2070
2071
2071
2072
2072
- class ProjectSnippetNote (SaveMixin , ObjectDeleteMixin , RESTObject ):
2073
- pass
2074
-
2075
-
2076
2073
class ProjectPipelineJob (ProjectJob ):
2077
2074
pass
2078
2075
0 commit comments