ashb commented on a change in pull request #6315: [AIRFLOW-5640] fix get_email_address_list types URL: https://github.com/apache/airflow/pull/6315#discussion_r334925255
########## File path: airflow/utils/email.py ########## @@ -20,10 +20,12 @@ import importlib import os import smtplib +from collections.abc import Iterable from email.mime.application import MIMEApplication from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText from email.utils import formatdate +from typing import List, Union Review comment: ```suggestion from typing import Iterable, List, Union ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
