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

13 lines
234 B
Python

from __future__ import annotations
from airflow.config_templates.default_celery import DEFAULT_CELERY_CONFIG
from airflow.executors.celery_executor import (
CeleryExecutor,
app,
)
DEFAULT_CELERY_CONFIG
app
CeleryExecutor()