Skip to content

Commit

Permalink
#1104 fix slack msg format
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielwol committed Dec 2, 2024
1 parent 62b8da8 commit 705eb0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dags/eoy_create_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ def success_alert(**context):
list_names = " ".join([slack_ids.get(name, name) for name in DAG_OWNERS])
send_slack_msg(
context=context,
msg=f"""{list_names} EOY DAG has run successfully. Please check out the tables on the database and make sure
they have been properly created."""
msg=f"{list_names} EOY DAG has run successfully. Please check out the tables on the database and make sure "
"they have been properly created."
)

yearly_task(YR=yr()) >> success_alert()
Expand Down

0 comments on commit 705eb0f

Please sign in to comment.