mirror of
https://github.com/zulip/zulip.git
synced 2025-11-22 07:21:23 +00:00
ruff: Fix PIE808 Unnecessary start argument in range.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
(cherry picked from commit 81bd63cb46)
This commit is contained in:
@@ -1163,7 +1163,7 @@ def update_message_flags(client: Client) -> None:
|
||||
"content": "I come not, friends, to steal away your hearts.",
|
||||
}
|
||||
message_ids = []
|
||||
for i in range(0, 3):
|
||||
for i in range(3):
|
||||
message_ids.append(client.send_message(request)["id"])
|
||||
|
||||
# {code_example|start}
|
||||
|
||||
Reference in New Issue
Block a user