ruff: Fix B905 zip() without an explicit strict= parameter.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2024-07-11 17:30:30 -07:00
committed by Tim Abbott
parent 1464009fae
commit 3f29bc42b1
19 changed files with 32 additions and 22 deletions

View File

@@ -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():