diff options
author | David Vo <auscompgeek@users.noreply.github.com> | 2020-08-07 22:02:55 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-07 08:02:55 -0400 |
commit | 4dd27e6d1125df83a754b5e0c2c14aaafc0ce837 (patch) | |
tree | db0e46cd9c3f2f94cedb200d5599a4b4d61651de /synapse/replication | |
parent | Revert #7736 (#8039) (diff) | |
download | synapse-4dd27e6d1125df83a754b5e0c2c14aaafc0ce837.tar.xz |
Reduce unnecessary whitespace in JSON. (#7372)
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/tcp/commands.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/synapse/replication/tcp/commands.py b/synapse/replication/tcp/commands.py index f33801f883..d853e4447e 100644 --- a/synapse/replication/tcp/commands.py +++ b/synapse/replication/tcp/commands.py @@ -18,11 +18,12 @@ The VALID_SERVER_COMMANDS and VALID_CLIENT_COMMANDS define which commands are allowed to be sent by which side. """ import abc -import json import logging from typing import Tuple, Type -_json_encoder = json.JSONEncoder() +from canonicaljson import json + +from synapse.util import json_encoder as _json_encoder logger = logging.getLogger(__name__) |