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

Commit

Permalink
Remove **kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Oct 29, 2020
1 parent c7a8f88 commit 9ae9a7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/storage/databases/main/roommember.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def _check_safe_current_state_events_membership_updated_txn(self, txn):
)

@cached(max_entries=100000, iterable=True)
async def get_users_in_room(self, room_id: str, **kwargs) -> List[str]:
async def get_users_in_room(self, room_id: str) -> List[str]:
return await self.db_pool.runInteraction(
"get_users_in_room", self.get_users_in_room_txn, room_id
)
Expand Down

0 comments on commit 9ae9a7e

Please sign in to comment.