summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2020-06-12 15:31:59 +0100
committerBrendan Abolivier <babolivier@matrix.org>2020-06-12 15:31:59 +0100
commite186c660b170ba31e6fe0f46efa393820ebe92ee (patch)
treeed93d8e149455671ee11c0ea9bc7c78713ed7bef /synapse
parentIncorporate review bits (diff)
downloadsynapse-e186c660b170ba31e6fe0f46efa393820ebe92ee.tar.xz
Lint
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/data_stores/main/event_push_actions.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/synapse/storage/data_stores/main/event_push_actions.py b/synapse/storage/data_stores/main/event_push_actions.py
index 4409e87913..382e0f61c2 100644
--- a/synapse/storage/data_stores/main/event_push_actions.py
+++ b/synapse/storage/data_stores/main/event_push_actions.py
@@ -16,9 +16,9 @@
 import logging
 from typing import Dict, Tuple
 
-import attr
 from six import iteritems
 
+import attr
 from canonicaljson import json
 
 from twisted.internet import defer
@@ -42,6 +42,7 @@ DEFAULT_HIGHLIGHT_ACTION = [
 @attr.s
 class EventPushSummary(object):
     """Summary of pending event push actions for a given user in a given room."""
+
     user_id = attr.ib()
     room_id = attr.ib()
     unread_count = attr.ib()
@@ -885,8 +886,12 @@ class EventPushActionsStore(EventPushActionsWorkerStore):
         summaries = {}  # type: Dict[Tuple[str, str], EventPushSummary]
         for row in txn:
             summaries[(row[0], row[1])] = EventPushSummary(
-                user_id=row[0], room_id=row[1], unread_count=row[2],
-                stream_ordering=row[3], old_user_id=row[4], notif_count=0,
+                user_id=row[0],
+                room_id=row[1],
+                unread_count=row[2],
+                stream_ordering=row[3],
+                old_user_id=row[4],
+                notif_count=0,
             )
 
         # Then get the count of notifications.