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

Commit

Permalink
Fix type error introduced accidentally by #13045
Browse files Browse the repository at this point in the history
  • Loading branch information
reivilibre committed Jun 17, 2022
1 parent 73af10f commit 30223fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synapse/storage/databases/main/devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -1245,8 +1245,8 @@ async def get_device_list_changes_in_rooms(

def _get_device_list_changes_in_rooms_txn(
txn: LoggingTransaction,
clause,
args,
clause: str,
args: List[Any],
) -> Set[str]:
txn.execute(sql.format(clause=clause), args)
return {user_id for user_id, in txn}
Expand Down

0 comments on commit 30223fe

Please sign in to comment.