ruff/crates/ruff_linter/resources/test/fixtures/airflow/AIR302_druid.py
Wei Lee 504fa20057
[airflow] Apply auto fixes to cases where the names have changed in Airflow 3 (AIR302) (#17553)
## Summary

<!-- What's the purpose of the change? What does it do, and why? -->

Apply auto fixes to cases where the names have changed in Airflow 3 in
AIR302 and split the huge test cases into different test cases based on
proivder

## Test Plan

<!-- How was it tested? -->

the test cases has been split into multiple for easier checking
2025-04-28 16:35:17 -04:00

16 lines
285 B
Python

from __future__ import annotations
from airflow.hooks.druid_hook import (
DruidDbApiHook,
DruidHook,
)
from airflow.operators.hive_to_druid import (
HiveToDruidOperator,
HiveToDruidTransfer,
)
DruidDbApiHook()
DruidHook()
HiveToDruidOperator()
HiveToDruidTransfer()