diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-07-19 14:14:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-19 14:14:30 -0400 |
commit | a6895dd576f96d7fd086fb4128d48ac8a3f098c5 (patch) | |
tree | 464b6f0f02bf9f134e8ebd34dd0f0ae5e88439e1 /synapse/federation/federation_client.py | |
parent | Merge branch 'master' into develop (diff) | |
download | synapse-a6895dd576f96d7fd086fb4128d48ac8a3f098c5.tar.xz |
Add type annotations to `trace` decorator. (#13328)
Functions that are decorated with `trace` are now properly typed and the type hints for them are fixed.
Diffstat (limited to 'synapse/federation/federation_client.py')
-rw-r--r-- | synapse/federation/federation_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/federation_client.py b/synapse/federation/federation_client.py index 66e6305562..7c450ecad0 100644 --- a/synapse/federation/federation_client.py +++ b/synapse/federation/federation_client.py @@ -217,7 +217,7 @@ class FederationClient(FederationBase): ) async def claim_client_keys( - self, destination: str, content: JsonDict, timeout: int + self, destination: str, content: JsonDict, timeout: Optional[int] ) -> JsonDict: """Claims one-time keys for a device hosted on a remote server. |