diff options
author | Nejc Habjan <nejc.habjan@siemens.com> | 2020-08-28 22:49:58 +0200 |
---|---|---|
committer | Nejc Habjan <nejc.habjan@siemens.com> | 2020-08-29 01:10:47 +0200 |
commit | f245ffbfad6f1d1f66d386a4b00b3a6ff3e74daa (patch) | |
tree | f2f1c719b8be86790a0f92d5f41c22704c14e8bd /tools | |
parent | d2997530bc3355048143bc29580ef32fc21dac3d (diff) | |
download | gitlab-f245ffbfad6f1d1f66d386a4b00b3a6ff3e74daa.tar.gz |
chore: update tools dir for latest black version
Diffstat (limited to 'tools')
-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 6ecaf24..8c548be 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 |