ruff: Partially reformat Python with Ruff 0.9 (2025 style).

These are the changes that are backwards compatible with the 2024
style.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2025-01-13 15:31:03 -08:00
committed by Tim Abbott
parent 99ea0255da
commit 653b0b0436
23 changed files with 38 additions and 62 deletions

View File

@@ -35,7 +35,7 @@ def api_splunk_webhook(
# for the default topic, use search name but truncate if too long
if len(search_name) >= MAX_TOPIC_NAME_LENGTH:
topic_name = f"{search_name[:(MAX_TOPIC_NAME_LENGTH - 3)]}..."
topic_name = f"{search_name[: (MAX_TOPIC_NAME_LENGTH - 3)]}..."
else:
topic_name = search_name