potiuk commented on issue #6696: [AIRFLOW-6128] Untangle plugins_manager and web from cyclic dependencies. Based on [AIRFLOW-6004] URL: https://github.com/apache/airflow/pull/6696#issuecomment-560014121 While working on adding more type annotations I've found more cyclic dependencies in Plugins manager. I managed to untangle them in this commit as a follow-up after the "executors" untangling. As result - we have much smaller airflow.__init__.py, and the dependencies are much more straightforward and not cyclic: ``` airflow -> PluginsManager -> [operators/hooks/macros/sensors] ``` rather than ``` airflow -> [operators/hooks/macros/sensors] -> PluginsManager -> [operators/hooks/macros/sensors] ``` I also made most of the affected files pylint + mypy compliant.
---------------------------------------------------------------- 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
