diff options
Diffstat (limited to 'gitlab/v4/objects/pipelines.py')
| -rw-r--r-- | gitlab/v4/objects/pipelines.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gitlab/v4/objects/pipelines.py b/gitlab/v4/objects/pipelines.py index bf41ce1..d604a3a 100644 --- a/gitlab/v4/objects/pipelines.py +++ b/gitlab/v4/objects/pipelines.py @@ -78,12 +78,6 @@ class ProjectPipeline(RefreshMixin, ObjectDeleteMixin, RESTObject): jobs: "ProjectPipelineJobManager" test_report: "ProjectPipelineTestReportManager" variables: "ProjectPipelineVariableManager" - _managers = ( - ("bridges", "ProjectPipelineBridgeManager"), - ("jobs", "ProjectPipelineJobManager"), - ("test_report", "ProjectPipelineTestReportManager"), - ("variables", "ProjectPipelineVariableManager"), - ) @cli.register_custom_action("ProjectPipeline") @exc.on_http_error(exc.GitlabPipelineCancelError) @@ -204,7 +198,6 @@ class ProjectPipelineScheduleVariableManager( class ProjectPipelineSchedule(SaveMixin, ObjectDeleteMixin, RESTObject): variables: ProjectPipelineScheduleVariableManager - _managers = (("variables", "ProjectPipelineScheduleVariableManager"),) @cli.register_custom_action("ProjectPipelineSchedule") @exc.on_http_error(exc.GitlabOwnershipError) |
