potiuk commented on code in PR #43173: URL: https://github.com/apache/airflow/pull/43173#discussion_r1807052109
########## providers/src/airflow/providers/__init__.py: ########## @@ -16,7 +16,9 @@ # specific language governing permissions and limitations # under the License. -from __future__ import annotations +# We do not use "from __future__ import annotations" here because it is not supported +# by Pycharm when we want to make sure all imports in airflow work from namespace packages +# Adding it automatically is excluded in pyproject.toml via I002 ruff rule exclusion Review Comment: Yep. -- 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]
