Skip to content

Commit

Permalink
#812 fix "unterminated string literal" dag error
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielwol committed Nov 20, 2024
1 parent 3aabdf2 commit 84e390a
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 @@ -100,8 +100,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() >> success_alert()
Expand Down

0 comments on commit 84e390a

Please sign in to comment.