Skip to content

Commit

Permalink
style: format with the latest black version
Browse files Browse the repository at this point in the history
  • Loading branch information
max-wittig committed Dec 8, 2019
1 parent 137d72b commit 06a8050
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
dist: bionic
python: 3.7
script:
- pip3 install black
- pip3 install -U --pre black
- black --check .
- stage: test
name: cli_func_v4
Expand Down
8 changes: 4 additions & 4 deletions gitlab/v4/objects.py
Expand Up @@ -762,8 +762,8 @@ class GroupClusterManager(CRUDMixin, RESTManager):
_obj_cls = GroupCluster
_from_parent_attrs = {"group_id": "id"}
_create_attrs = (
("name", "platform_kubernetes_attributes",),
("domain", "enabled", "managed", "environment_scope",),
("name", "platform_kubernetes_attributes"),
("domain", "enabled", "managed", "environment_scope"),
)
_update_attrs = (
tuple(),
Expand Down Expand Up @@ -1664,8 +1664,8 @@ class ProjectClusterManager(CRUDMixin, RESTManager):
_obj_cls = ProjectCluster
_from_parent_attrs = {"project_id": "id"}
_create_attrs = (
("name", "platform_kubernetes_attributes",),
("domain", "enabled", "managed", "environment_scope",),
("name", "platform_kubernetes_attributes"),
("domain", "enabled", "managed", "environment_scope"),
)
_update_attrs = (
tuple(),
Expand Down

0 comments on commit 06a8050

Please sign in to comment.