From 2f8568866e8faa37c4591e10296ca9f2ae74506b Mon Sep 17 00:00:00 2001 From: Devon Hudson Date: Fri, 10 Oct 2025 16:15:21 -0600 Subject: [PATCH] Remove unnecessary bits --- synapse/rest/client/relations.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/synapse/rest/client/relations.py b/synapse/rest/client/relations.py index 6adef63f3a..788f87602f 100644 --- a/synapse/rest/client/relations.py +++ b/synapse/rest/client/relations.py @@ -153,7 +153,6 @@ class ThreadUpdatesServlet(RestServlet): def __init__(self, hs: "HomeServer"): super().__init__() - self.hs = hs self.clock = hs.get_clock() self.auth = hs.get_auth() self.store = hs.get_datastores().main @@ -173,7 +172,6 @@ class ThreadUpdatesServlet(RestServlet): Args: thread_updates: List of thread update info from storage bundled_aggregations: Map of event_id to bundled aggregations - event_serializer: Event serializer instance time_now: Current time in milliseconds serialize_options: Serialization configuration