mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
ruff: Fix B905 zip() without an explicit strict= parameter.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
1464009fae
commit
3f29bc42b1
@@ -167,7 +167,7 @@ def send_stream_messages(
|
||||
global message_thread_ids
|
||||
message_thread_ids += message_ids
|
||||
|
||||
for message, message_id in zip(staged_messages, message_ids):
|
||||
for message, message_id in zip(staged_messages, message_ids, strict=False):
|
||||
if message.get("reactions") is not None:
|
||||
reactions = message["reactions"]
|
||||
for reaction, user_names in reactions.items():
|
||||
|
||||
Reference in New Issue
Block a user