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

Commit 30223fe

Browse files
committed
Fix type error introduced accidentally by #13045
1 parent 73af10f commit 30223fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

synapse/storage/databases/main/devices.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1245,8 +1245,8 @@ async def get_device_list_changes_in_rooms(
12451245

12461246
def _get_device_list_changes_in_rooms_txn(
12471247
txn: LoggingTransaction,
1248-
clause,
1249-
args,
1248+
clause: str,
1249+
args: List[Any],
12501250
) -> Set[str]:
12511251
txn.execute(sql.format(clause=clause), args)
12521252
return {user_id for user_id, in txn}

0 commit comments

Comments
 (0)