mirror of
https://github.com/zulip/zulip.git
synced 2025-11-12 09:58:06 +00:00
python: Elide unnecessary list wrappers.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
eff0a73925
commit
2665a3ce2b
@@ -187,7 +187,7 @@ This is most often used for legal compliance.
|
||||
.values_list("full_name", "delivery_email")
|
||||
)
|
||||
|
||||
return ", ".join([format_sender(e[0], e[1]) for e in users]), False
|
||||
return ", ".join(format_sender(e[0], e[1]) for e in users), False
|
||||
|
||||
def transform_message(message: Message) -> Dict[str, str]:
|
||||
row = {
|
||||
|
||||
Reference in New Issue
Block a user