Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit e7d7f92

Browse files
committed
Fix some lints
1 parent f1f3fb0 commit e7d7f92

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

changelog.d/9247.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Implement MSC2716 to support backfilling history into rooms
1+
Implement MSC2716 to support backfilling history into rooms.

synapse/handlers/message.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,11 @@ async def create_and_send_nonmember_event(
744744
prev_events = event_dict["prev_events"]
745745

746746
event, context = await self.create_event(
747-
requester, event_dict, txn_id=txn_id, prev_event_ids=prev_events, inherit_depth=inherit_depth
747+
requester,
748+
event_dict,
749+
txn_id=txn_id,
750+
prev_event_ids=prev_events,
751+
inherit_depth=inherit_depth,
748752
)
749753

750754
assert self.hs.is_mine_id(event.sender), "User must be our own: %s" % (

synapse/rest/client/v1/room.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
parse_integer,
3939
parse_integer_from_args,
4040
parse_json_object_from_request,
41-
parse_strings_from_args,
4241
parse_string,
42+
parse_strings_from_args,
4343
)
4444
from synapse.logging.opentracing import set_tag
4545
from synapse.rest.client.transactions import HttpTransactionCache

0 commit comments

Comments
 (0)