1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/push/pusherpool.py b/synapse/push/pusherpool.py
index 0fdd7ea786..041ce8f22a 100644
--- a/synapse/push/pusherpool.py
+++ b/synapse/push/pusherpool.py
@@ -106,8 +106,10 @@ class PusherPool:
user_id, not_access_token_id
)
for p in all:
- if (p['user_name'] == user_id and
- p['access_token'] != not_access_token_id):
+ if (
+ p['user_name'] == user_id and
+ p['access_token'] != not_access_token_id
+ ):
logger.info(
"Removing pusher for app id %s, pushkey %s, user %s",
p['app_id'], p['pushkey'], p['user_name']
|