diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2023-11-01 10:23:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-01 10:23:13 +0000 |
commit | c812f43bd74347da1ced0ddcfff9d199988add34 (patch) | |
tree | 45b6b6dd9da57c3428de99ae35acdf916dafd4be /synapse | |
parent | Do not call getfullargspec on every call. (#16589) (diff) | |
download | synapse-c812f43bd74347da1ced0ddcfff9d199988add34.tar.xz |
Bump twisted from 23.8.0 to 23.10.0 (#16588)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/util/__init__.py | 2 |
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(): |