mirror of
https://github.com/element-hq/synapse.git
synced 2025-04-08 16:43:59 +00:00
Fix lint
This commit is contained in:
parent
482716f18e
commit
00a4c937be
1 changed files with 3 additions and 1 deletions
|
@ -1531,7 +1531,9 @@ class RoomHierarchyRestServlet(RestServlet):
|
|||
remote_room_hosts: List[str] | None
|
||||
if self.msc4235_enabled:
|
||||
args: Dict[bytes, List[bytes]] = request.args # type: ignore
|
||||
remote_room_hosts = parse_strings_from_args(args, "org.matrix.msc4235.via", required=False)
|
||||
remote_room_hosts = parse_strings_from_args(
|
||||
args, "org.matrix.msc4235.via", required=False
|
||||
)
|
||||
|
||||
return 200, await self._room_summary_handler.get_room_hierarchy(
|
||||
requester,
|
||||
|
|
Loading…
Add table
Reference in a new issue