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

9 lines
222 B
Python

from __future__ import annotations
from airflow.hooks.slack_hook import SlackHook
from airflow.operators.slack_operator import SlackAPIOperator, SlackAPIPostOperator
SlackHook()
SlackAPIOperator()
SlackAPIPostOperator()