Skip to content

Commit

Permalink
Ran lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ashiramin committed Dec 8, 2024
1 parent be7c5a2 commit e15c205
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions catalog/dags/common/slack.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

from airflow.decorators import task
from airflow.exceptions import AirflowNotFoundException
from airflow.models import Variable, DAG
from airflow.models import DAG, Variable
from airflow.providers.http.hooks.http import HttpHook
from requests import Response
from typing_extensions import NotRequired, TypedDict
Expand Down Expand Up @@ -423,7 +423,7 @@ def notify_slack(
text: str,
username: str = "Airflow Notification",
icon_emoji: str = ":airflow:",
dag: DAG | None = None
dag: DAG | None = None,
) -> None:
send_message(
text,
Expand Down

0 comments on commit e15c205

Please sign in to comment.