summary refs log tree commit diff
path: root/synapse/http/client.py
diff options
context:
space:
mode:
authorMathieu Velten <mathieuv@matrix.org>2022-11-22 17:23:44 +0100
committerMathieu Velten <mathieuv@matrix.org>2022-11-22 18:10:08 +0100
commitb1be9a742a079d9fb72d37f64f1b177dfb1bd7f7 (patch)
treef0800a6e579e9fd54a4f6e09514ea6e7fc898efd /synapse/http/client.py
parentAdd type ignore unused-awaitable to ensureDeffered calls (diff)
downloadsynapse-b1be9a742a079d9fb72d37f64f1b177dfb1bd7f7.tar.xz
Add type ignore unused-awaitable to places adding callbacks to a deffered
Diffstat (limited to 'synapse/http/client.py')
-rw-r--r--synapse/http/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/client.py b/synapse/http/client.py

index 4eb740c040..d7bc09494b 100644 --- a/synapse/http/client.py +++ b/synapse/http/client.py
@@ -452,7 +452,7 @@ class SimpleHttpClient: ) # turn timeouts into RequestTimedOutErrors - request_deferred.addErrback(_timeout_to_request_timed_out_error) + request_deferred.addErrback(_timeout_to_request_timed_out_error) # type: ignore[unused-awaitable] response = await make_deferred_yieldable(request_deferred)