mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 17:54:48 -04:00
PEP8
This commit is contained in:
parent
c46088405a
commit
5d439b127b
8 changed files with 22 additions and 20 deletions
|
@ -521,6 +521,9 @@ class FederationHandler(BaseHandler):
|
|||
|
||||
@log_function
|
||||
def _on_user_joined(self, user, room_id):
|
||||
waiters = self.waiting_for_join_list.get((user.to_string(), room_id), [])
|
||||
waiters = self.waiting_for_join_list.get(
|
||||
(user.to_string(), room_id),
|
||||
[]
|
||||
)
|
||||
while waiters:
|
||||
waiters.pop().callback(None)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue