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 /tools/python_test_v4.py | |
parent | 1317f4b62afefcb2504472d5b5d8e24f39b0d86f (diff) | |
download | gitlab-696147922552a8e6ddda3a5b852ee2de6b983e37.tar.gz |
chore: make latest black happy with existing code
Diffstat (limited to 'tools/python_test_v4.py')
-rw-r--r-- | tools/python_test_v4.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/python_test_v4.py b/tools/python_test_v4.py index 717bd24..21faf9e 100644 --- a/tools/python_test_v4.py +++ b/tools/python_test_v4.py @@ -701,7 +701,12 @@ deploy_token_group = gl.groups.create( # Remove once https://gitlab.com/gitlab-org/gitlab/-/issues/211878 is fixed deploy_token = deploy_token_group.deploytokens.create( - {"name": "foo", "username": "", "expires_at": "", "scopes": ["read_repository"],} + { + "name": "foo", + "username": "", + "expires_at": "", + "scopes": ["read_repository"], + } ) assert len(deploy_token_group.deploytokens.list()) == 1 |