mirror of https://github.com/zulip/zulip.git
ruff: Fix PLR1714 Consider merging multiple comparisons.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
05e54a0af2
commit
ea60bc3ff8
|
@ -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}"
|
||||
|
|
Loading…
Reference in New Issue