Remove unnecessary set

This commit is contained in:
Erik Johnston 2018-05-30 11:32:27 +01:00
parent 6c1d13a15a
commit 1810cc3f7e
1 changed files with 1 additions and 1 deletions

View File

@ -1414,7 +1414,7 @@ class EventsStore(EventsWorkerStore):
# Set of event_ids of all prev_events of those in `forward_events`. This
# is guaranteed to contain at least the given event_id.
sibling_events = set()
for eid in set(forward_events):
for eid in forward_events:
chunk_id = self._simple_select_one_onecol_txn(
txn,
table="events",