mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-03 07:04:53 +00:00

## 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
11 lines
248 B
Python
11 lines
248 B
Python
from __future__ import annotations
|
|
|
|
from airflow.hooks.mysql_hook import MySqlHook
|
|
from airflow.operators.presto_to_mysql import (
|
|
PrestoToMySqlOperator,
|
|
PrestoToMySqlTransfer,
|
|
)
|
|
|
|
MySqlHook()
|
|
PrestoToMySqlOperator()
|
|
PrestoToMySqlTransfer()
|