flask-mail
flask-mail copied to clipboard
assert message.send_to can never fail
https://github.com/mattupstate/flask-mail/blob/1709c70d839a7cc7b1f7eeb97333b71cd420fe32/flask_mail.py#L175
message.send_to is a set and if it contains None values it still is truthy.
assert set([None]) # True