diff options
author | Dan Callahan <dan.callahan@gmail.com> | 2020-10-27 23:26:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-27 23:26:36 +0000 |
commit | aff1eb7c671b0a3813407321d2702ec46c71fa56 (patch) | |
tree | 08063039b647245ffb61ed9920b7cdc84105d2f7 /tests/storage | |
parent | Minor updates to docs on how to run tests (#8666) (diff) | |
download | synapse-aff1eb7c671b0a3813407321d2702ec46c71fa56.tar.xz |
Tell Black to format code for Python 3.5 (#8664)
This allows trailing commas in multi-line arg lists. Minor, but we might as well keep our formatting current with regard to our minimum supported Python version. Signed-off-by: Dan Callahan <danc@element.io>
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_client_ips.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_client_ips.py b/tests/storage/test_client_ips.py index 755c70db31..e96ca1c8ca 100644 --- a/tests/storage/test_client_ips.py +++ b/tests/storage/test_client_ips.py @@ -412,7 +412,7 @@ class ClientIpAuthTestCase(unittest.HomeserverTestCase): "GET", "/_matrix/client/r0/admin/users/" + self.user_id, access_token=access_token, - **make_request_args + **make_request_args, ) request.requestHeaders.addRawHeader(b"User-Agent", b"Mozzila pizza") |