ruff/crates/ruff_linter/resources/test/fixtures/airflow/AIR302_smtp.py

10 lines
180 B
Python

from __future__ import annotations
from airflow.operators.email_operator import EmailOperator
EmailOperator()
from airflow.operators.email import EmailOperator
EmailOperator()