summary refs log tree commit diff
path: root/synapse/storage/databases/state/store.py
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/storage/databases/state/store.py')
-rw-r--r--synapse/storage/databases/state/store.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/storage/databases/state/store.py b/synapse/storage/databases/state/store.py
index 97594d9b7f..f9ae6812e5 100644
--- a/synapse/storage/databases/state/store.py
+++ b/synapse/storage/databases/state/store.py
@@ -390,9 +390,7 @@ class StateGroupDataStore(StateBackgroundUpdateStore, SQLBaseStore):
                     inflight_requests.append((group, make_deferred_yieldable(result)))
                     continue
 
-            if try_combine_inflight_requests(
-                group, state_filter, inflight_requests
-            ):
+            if try_combine_inflight_requests(group, state_filter, inflight_requests):
                 # succeeded in finding in-flight requests that could be combined
                 # together to give all the state we need for this group.
                 continue