0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-10-18 06:19:24 +02:00

Remove unused param

This commit is contained in:
Erik Johnston 2017-02-20 15:02:01 +00:00
parent efff39c030
commit 6226a27bf8
2 changed files with 1 additions and 2 deletions

View file

@ -356,7 +356,7 @@ class RoomCreationHandler(BaseHandler):
class RoomContextHandler(BaseHandler): class RoomContextHandler(BaseHandler):
@defer.inlineCallbacks @defer.inlineCallbacks
def get_event_context(self, user, room_id, event_id, limit, is_guest): def get_event_context(self, user, room_id, event_id, limit):
"""Retrieves events, pagination tokens and state around a given event """Retrieves events, pagination tokens and state around a given event
in a room. in a room.

View file

@ -505,7 +505,6 @@ class RoomEventContext(ClientV1RestServlet):
room_id, room_id,
event_id, event_id,
limit, limit,
requester.is_guest,
) )
if not results: if not results: