potiuk commented on a change in pull request #13488:
URL: https://github.com/apache/airflow/pull/13488#discussion_r553246189
##########
File path: airflow/providers_manager.py
##########
@@ -34,14 +34,14 @@
import importlib.resources as importlib_resources
except ImportError:
# Try back-ported to PY<37 `importlib_resources`.
- import importlib_resources
+ import importlib_resources # noqa
Review comment:
The MyPy real-time scan integration complains about it in the IDE. Not
sure why, but I guess it has something to do with the weird treatment of
importlib_resources for different python versions. Adding # noqa is safe here
and solves the problem:

It's my quest to have a green checkmark for all python files.

----------------------------------------------------------------
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]