diff options
| author | Nejc Habjan <hab.nejc@gmail.com> | 2021-04-27 07:14:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-27 07:14:50 +0200 |
| commit | 909aa9a02b8a0eb2faed747bfbf5839c53266129 (patch) | |
| tree | 3d7a353bfb79aa00f393f8f642e89e921ed30d53 /gitlab/v4/objects | |
| parent | dde01c70c2bbac4d1b35211b81347f4363219777 (diff) | |
| parent | 0357c37fb40fb6aef175177fab98d0eadc26b667 (diff) | |
| download | gitlab-909aa9a02b8a0eb2faed747bfbf5839c53266129.tar.gz | |
Merge pull request #1352 from JohnVillalovos/jlvillal/fix_mro
fix: add a check to ensure the MRO is correct
Diffstat (limited to 'gitlab/v4/objects')
| -rw-r--r-- | gitlab/v4/objects/commits.py | 2 | ||||
| -rw-r--r-- | gitlab/v4/objects/deployments.py | 2 | ||||
| -rw-r--r-- | gitlab/v4/objects/jobs.py | 2 | ||||
| -rw-r--r-- | gitlab/v4/objects/pipelines.py | 2 | ||||
| -rw-r--r-- | gitlab/v4/objects/releases.py | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/gitlab/v4/objects/commits.py b/gitlab/v4/objects/commits.py index 037a90d..6176a08 100644 --- a/gitlab/v4/objects/commits.py +++ b/gitlab/v4/objects/commits.py @@ -159,7 +159,7 @@ class ProjectCommitCommentManager(ListMixin, CreateMixin, RESTManager): ) -class ProjectCommitStatus(RESTObject, RefreshMixin): +class ProjectCommitStatus(RefreshMixin, RESTObject): pass diff --git a/gitlab/v4/objects/deployments.py b/gitlab/v4/objects/deployments.py index 395bc24..64d779f 100644 --- a/gitlab/v4/objects/deployments.py +++ b/gitlab/v4/objects/deployments.py @@ -8,7 +8,7 @@ __all__ = [ ] -class ProjectDeployment(RESTObject, SaveMixin): +class ProjectDeployment(SaveMixin, RESTObject): pass diff --git a/gitlab/v4/objects/jobs.py b/gitlab/v4/objects/jobs.py index 6513d75..e6e04e1 100644 --- a/gitlab/v4/objects/jobs.py +++ b/gitlab/v4/objects/jobs.py @@ -10,7 +10,7 @@ __all__ = [ ] -class ProjectJob(RESTObject, RefreshMixin): +class ProjectJob(RefreshMixin, RESTObject): @cli.register_custom_action("ProjectJob") @exc.on_http_error(exc.GitlabJobCancelError) def cancel(self, **kwargs): diff --git a/gitlab/v4/objects/pipelines.py b/gitlab/v4/objects/pipelines.py index bafab9b..724c5e8 100644 --- a/gitlab/v4/objects/pipelines.py +++ b/gitlab/v4/objects/pipelines.py @@ -30,7 +30,7 @@ __all__ = [ ] -class ProjectPipeline(RESTObject, RefreshMixin, ObjectDeleteMixin): +class ProjectPipeline(RefreshMixin, ObjectDeleteMixin, RESTObject): _managers = ( ("jobs", "ProjectPipelineJobManager"), ("bridges", "ProjectPipelineBridgeManager"), diff --git a/gitlab/v4/objects/releases.py b/gitlab/v4/objects/releases.py index ea74adb..9c94187 100644 --- a/gitlab/v4/objects/releases.py +++ b/gitlab/v4/objects/releases.py @@ -24,7 +24,7 @@ class ProjectReleaseManager(NoUpdateMixin, RESTManager): ) -class ProjectReleaseLink(RESTObject, ObjectDeleteMixin, SaveMixin): +class ProjectReleaseLink(ObjectDeleteMixin, SaveMixin, RESTObject): pass |
