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
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ def format_object(
else:
key = key_list[0]
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)
if key.startswith("!"):
message += f"\n>{value}"