summary refs log tree commit diff
path: root/tests/server.py
diff options
context:
space:
mode:
authorDan Callahan <dan.callahan@gmail.com>2020-10-27 23:26:36 +0000
committerGitHub <noreply@github.com>2020-10-27 23:26:36 +0000
commitaff1eb7c671b0a3813407321d2702ec46c71fa56 (patch)
tree08063039b647245ffb61ed9920b7cdc84105d2f7 /tests/server.py
parentMinor updates to docs on how to run tests (#8666) (diff)
downloadsynapse-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/server.py')
-rw-r--r--tests/server.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/server.py b/tests/server.py
index 4d33b84097..ea9c22bc51 100644
--- a/tests/server.py
+++ b/tests/server.py
@@ -380,7 +380,7 @@ def setup_test_homeserver(cleanup_func, *args, **kwargs):
                 pool._runWithConnection,
                 func,
                 *args,
-                **kwargs
+                **kwargs,
             )
 
         def runInteraction(interaction, *args, **kwargs):
@@ -390,7 +390,7 @@ def setup_test_homeserver(cleanup_func, *args, **kwargs):
                 pool._runInteraction,
                 interaction,
                 *args,
-                **kwargs
+                **kwargs,
             )
 
         pool.runWithConnection = runWithConnection