Remove unnecessary set
This commit is contained in:
parent
6c1d13a15a
commit
1810cc3f7e
|
@ -1414,7 +1414,7 @@ class EventsStore(EventsWorkerStore):
|
||||||
# Set of event_ids of all prev_events of those in `forward_events`. This
|
# Set of event_ids of all prev_events of those in `forward_events`. This
|
||||||
# is guaranteed to contain at least the given event_id.
|
# is guaranteed to contain at least the given event_id.
|
||||||
sibling_events = set()
|
sibling_events = set()
|
||||||
for eid in set(forward_events):
|
for eid in forward_events:
|
||||||
chunk_id = self._simple_select_one_onecol_txn(
|
chunk_id = self._simple_select_one_onecol_txn(
|
||||||
txn,
|
txn,
|
||||||
table="events",
|
table="events",
|
||||||
|
|
Loading…
Reference in New Issue