summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorreivilibre <oliverw@matrix.org>2022-06-17 13:05:27 +0100
committerGitHub <noreply@github.com>2022-06-17 13:05:27 +0100
commitb26cbe3d4573c22b8a1743ae65db4f61770e69e9 (patch)
tree7de104a2acdaafd6e379c6e24647c964cedb15aa /synapse
parentUpdate info on downstream debs (#13095) (diff)
downloadsynapse-b26cbe3d4573c22b8a1743ae65db4f61770e69e9.tar.xz
Fix type error that made its way onto develop (#13098)
* Fix type error introduced accidentally by #13045

* Newsfile

Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org>
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/databases/main/devices.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/databases/main/devices.py b/synapse/storage/databases/main/devices.py

index 93d980786e..adde5d0978 100644 --- a/synapse/storage/databases/main/devices.py +++ b/synapse/storage/databases/main/devices.py
@@ -1245,8 +1245,8 @@ class DeviceWorkerStore(EndToEndKeyWorkerStore): 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}