1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/federation/transport/client.py b/synapse/federation/transport/client.py
index 2bd0e0040b..68808e9203 100644
--- a/synapse/federation/transport/client.py
+++ b/synapse/federation/transport/client.py
@@ -96,7 +96,9 @@ class TransportLayerClient(object):
destination, event_id)
path = _create_v1_path("/event/%s", event_id)
- return self.client.get_json_with_trailing_slashes_on_404(destination, path=path, timeout=timeout)
+ return self.client.get_json_with_trailing_slashes_on_404(
+ destination, path=path, timeout=timeout,
+ )
@log_function
def backfill(self, destination, room_id, event_tuples, limit):
|