Skip to content
This repository was archived by the owner on Mar 26, 2024. It is now read-only.

Commit cb8e8b6

Browse files
committed
Remove no longer needed type ignore comment
1 parent aa6d908 commit cb8e8b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

synapse/storage/databases/main/event_federation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,7 @@ async def get_forward_extremities_for_room_at_stream_ordering(
11871187
"""
11881188
# We want to make the cache more effective, so we clamp to the last
11891189
# change before the given ordering.
1190-
last_change = self._events_stream_cache.get_max_pos_of_last_change(room_id) # type: ignore[attr-defined]
1190+
last_change = self._events_stream_cache.get_max_pos_of_last_change(room_id)
11911191

11921192
# We don't always have a full stream_to_exterm_id table, e.g. after
11931193
# the upgrade that introduced it, so we make sure we never ask for a

0 commit comments

Comments
 (0)