pep8
parent
b131fb1fe2
commit
091c545c4f
|
@ -73,8 +73,7 @@ class EventActionsStore(SQLBaseStore):
|
||||||
" OR (e.topological_ordering == ? AND e.stream_ordering > ?)"
|
" OR (e.topological_ordering == ? AND e.stream_ordering > ?)"
|
||||||
")"
|
")"
|
||||||
)
|
)
|
||||||
txn.execute(sql,
|
txn.execute(sql, (
|
||||||
(
|
|
||||||
user_id, room_id,
|
user_id, room_id,
|
||||||
topological_ordering, topological_ordering, stream_ordering
|
topological_ordering, topological_ordering, stream_ordering
|
||||||
)
|
)
|
||||||
|
@ -89,5 +88,6 @@ class EventActionsStore(SQLBaseStore):
|
||||||
)
|
)
|
||||||
defer.returnValue(ret)
|
defer.returnValue(ret)
|
||||||
|
|
||||||
|
|
||||||
class EventActionsTable(object):
|
class EventActionsTable(object):
|
||||||
table_name = "event_actions"
|
table_name = "event_actions"
|
||||||
|
|
Loading…
Reference in New Issue