josh-fell edited a comment on pull request #20226: URL: https://github.com/apache/airflow/pull/20226#issuecomment-992518917
@potiuk Have you tried the version check change suggested by @uranusjr [in the thread](https://github.com/apache/airflow/issues/19891#issuecomment-990728228) of #19891 to fix the `cached_property` errors instead of the `# type: ignore[attr-defined]` comment? ```python if sys.version_info >= (3, 8): from functools import cached_property else: from cached_property import cached_property ``` @subkanthi tried this and it did not work in his testing (see [comment](https://github.com/apache/airflow/pull/20190#discussion_r767159816)) but I made the change to the Azure provider in my testing and it _did_ resolve the MyPy error. -- 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]
