diff options
author | Oleksii Shkurupii <Oleksii.Shkurupii@playtech.com> | 2020-08-29 10:08:40 +0300 |
---|---|---|
committer | Oleksii Shkurupii <Oleksii.Shkurupii@playtech.com> | 2020-08-29 10:08:40 +0300 |
commit | 696147922552a8e6ddda3a5b852ee2de6b983e37 (patch) | |
tree | 23a3357d9af8b983170cfa9634310739b4038811 /gitlab/v4/objects.py | |
parent | 1317f4b62afefcb2504472d5b5d8e24f39b0d86f (diff) | |
download | gitlab-696147922552a8e6ddda3a5b852ee2de6b983e37.tar.gz |
chore: make latest black happy with existing code
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r-- | gitlab/v4/objects.py | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 9893d1d..e515ea1 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -711,8 +711,14 @@ class ProjectDeployTokenManager(ListMixin, CreateMixin, DeleteMixin, RESTManager _from_parent_attrs = {"project_id": "id"} _obj_cls = ProjectDeployToken _create_attrs = ( - ("name", "scopes",), - ("expires_at", "username",), + ( + "name", + "scopes", + ), + ( + "expires_at", + "username", + ), ) @@ -725,8 +731,14 @@ class GroupDeployTokenManager(ListMixin, CreateMixin, DeleteMixin, RESTManager): _from_parent_attrs = {"group_id": "id"} _obj_cls = GroupDeployToken _create_attrs = ( - ("name", "scopes",), - ("expires_at", "username",), + ( + "name", + "scopes", + ), + ( + "expires_at", + "username", + ), ) @@ -4205,7 +4217,11 @@ class ProjectServiceManager(GetMixin, UpdateMixin, DeleteMixin, ListMixin, RESTM ), ), "jira": ( - ("url", "username", "password",), + ( + "url", + "username", + "password", + ), ( "api_url", "active", |