eladkal commented on code in PR #32437: URL: https://github.com/apache/airflow/pull/32437#discussion_r1284848450
########## airflow/providers/amazon/aws/operators/rds.py: ########## @@ -20,15 +20,20 @@ import json import warnings from datetime import timedelta -from typing import TYPE_CHECKING, Sequence +from typing import TYPE_CHECKING, Any, Sequence +from astroid.decorators import cachedproperty Review Comment: @vandonr-amz note this raises warning in the CI: `airflow/providers/amazon/aws/operators/rds.py:78: [W0513(warning), ] cachedproperty has been deprecated and will be removed in astroid 3.0 for Python 3.8+. Use functools.cached_property instead.` -- 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]
