diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-09-01 11:59:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-01 11:59:32 -0400 |
commit | d1f1b46c2cfe612790aebdd54765953951c94e45 (patch) | |
tree | 19b13d2d8b152ab7d3d05739c3124f2522aa85e1 /synapse/rest/client/knock.py | |
parent | Populate `rooms.creator` field for easy lookup (#10697) (diff) | |
download | synapse-d1f1b46c2cfe612790aebdd54765953951c94e45.tar.xz |
Additional type hints for client REST servlets (part 4) (#10728)
Diffstat (limited to 'synapse/rest/client/knock.py')
-rw-r--r-- | synapse/rest/client/knock.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/rest/client/knock.py b/synapse/rest/client/knock.py index 68fb08d0ba..0152a0c66a 100644 --- a/synapse/rest/client/knock.py +++ b/synapse/rest/client/knock.py @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. import logging -from typing import TYPE_CHECKING, Dict, List, Optional, Tuple +from typing import TYPE_CHECKING, Awaitable, Dict, List, Optional, Tuple from twisted.web.server import Request @@ -96,7 +96,9 @@ class KnockRoomAliasServlet(RestServlet): return 200, {"room_id": room_id} - def on_PUT(self, request: Request, room_identifier: str, txn_id: str): + def on_PUT( + self, request: Request, room_identifier: str, txn_id: str + ) -> Awaitable[Tuple[int, JsonDict]]: set_tag("txn_id", txn_id) return self.txns.fetch_or_execute_request( |