diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-03-03 07:19:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-03 07:19:19 -0500 |
commit | 0c330423bcb26b2227f7d58749bfa176830c10ec (patch) | |
tree | db1ed7576ba4259b57cae31a3a6e4f52b5254bfa /synapse/storage | |
parent | Make deleting stale pushers a background update (#9536) (diff) | |
download | synapse-0c330423bcb26b2227f7d58749bfa176830c10ec.tar.xz |
Bump the mypy and mypy-zope versions. (#9529)
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/roommember.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/roommember.py b/synapse/storage/roommember.py index f152f63321..d2ff4da6b9 100644 --- a/synapse/storage/roommember.py +++ b/synapse/storage/roommember.py @@ -25,7 +25,7 @@ RoomsForUser = namedtuple( ) GetRoomsForUserWithStreamOrdering = namedtuple( - "_GetRoomsForUserWithStreamOrdering", ("room_id", "event_pos") + "GetRoomsForUserWithStreamOrdering", ("room_id", "event_pos") ) |