summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-11-01 10:23:13 +0000
committerGitHub <noreply@github.com>2023-11-01 10:23:13 +0000
commitc812f43bd74347da1ced0ddcfff9d199988add34 (patch)
tree45b6b6dd9da57c3428de99ae35acdf916dafd4be /synapse
parentDo not call getfullargspec on every call. (#16589) (diff)
downloadsynapse-c812f43bd74347da1ced0ddcfff9d199988add34.tar.xz
Bump twisted from 23.8.0 to 23.10.0 (#16588)
Diffstat (limited to 'synapse')
-rw-r--r--synapse/util/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/util/__init__.py b/synapse/util/__init__.py
index 9f3b8741c1..8d9df352b2 100644
--- a/synapse/util/__init__.py
+++ b/synapse/util/__init__.py
@@ -93,7 +93,7 @@ class Clock:
 
     _reactor: IReactorTime = attr.ib()
 
-    @defer.inlineCallbacks  # type: ignore[arg-type]  # Issue in Twisted's type annotations
+    @defer.inlineCallbacks
     def sleep(self, seconds: float) -> "Generator[Deferred[float], Any, Any]":
         d: defer.Deferred[float] = defer.Deferred()
         with context.PreserveLoggingContext():