potiuk commented on code in PR #37585: URL: https://github.com/apache/airflow/pull/37585#discussion_r1497302704
########## airflow/utils/pydantic.py: ########## @@ -24,19 +24,15 @@ from __future__ import annotations +from importlib.metadata import PackageNotFoundError, version Review Comment: well version is a method in stdlib's importlb.metadata, I think it makes little sense to rename it - but I see your point. likely better to import `from importlib import metadata` and use the package explicitly. Let me change it. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
