diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2020-02-18 17:31:34 +0100 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2020-02-18 17:31:34 +0100 |
commit | ad3e833671c49db194c86e23981215b13b96bb1d (patch) | |
tree | e85113b813c96fd64cb623c068c434d5a587de66 /gitlab/v4/objects.py | |
parent | 5298964ee7db8a610f23de2d69aad8467727ca97 (diff) | |
download | gitlab-ad3e833671c49db194c86e23981215b13b96bb1d.tar.gz |
style: fix black violations
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r-- | gitlab/v4/objects.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index d2af890..8b94f07 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -2153,6 +2153,7 @@ class ProjectCommit(RESTObject): post_data = {"branch": branch} self.manager.gitlab.http_post(path, post_data=post_data, **kwargs) + class ProjectCommitManager(RetrieveMixin, CreateMixin, RESTManager): _path = "/projects/%(project_id)s/repository/commits" _obj_cls = ProjectCommit |