ruff: Fix PLR1714 Consider merging multiple comparisons.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2024-07-25 15:11:41 -07:00
committed by Tim Abbott
parent 05e54a0af2
commit ea60bc3ff8

View File

@@ -79,7 +79,7 @@ def format_object(
else: else:
key = key_list[0] key = key_list[0]
key_raw = key.lstrip("!").lstrip("#").lstrip('"') key_raw = key.lstrip("!").lstrip("#").lstrip('"')
if key_raw != "html_url" and key_raw != "subject" and ":" not in key_raw: if key_raw not in {"html_url", "subject"} and ":" not in key_raw:
value = get_value(obj, key_raw) value = get_value(obj, key_raw)
if key.startswith("!"): if key.startswith("!"):
message += f"\n>{value}" message += f"\n>{value}"