Skip to content

Commit 080d450

Browse files
authored
Remove unused references to tulflow tasks (#1441)
1 parent 3a4d317 commit 080d450

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

cob_datapipeline/boundwith_move_alma_sftp_to_s3_dag.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
from datetime import datetime, timedelta
33
import logging
44
import pendulum
5-
from tulflow import tasks
65
import airflow
76
from airflow.models import Variable
87
from airflow.providers.sftp.hooks.sftp import SFTPHook

cob_datapipeline/catalog_move_alma_sftp_to_s3_dag.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
from datetime import datetime, timedelta
33
import logging
44
import pendulum
5-
from tulflow import tasks
65
import airflow
76
from airflow.models import Variable
87
from airflow.providers.sftp.hooks.sftp import SFTPHook
@@ -27,7 +26,7 @@
2726
"on_failure_callback": [slackpostonfail],
2827
"on_success_callback": [slackpostonsuccess],
2928
"email_on_retry": False,
30-
"on_failure_callback": tasks.execute_slackpostonfail,
29+
"on_failure_callback": [slackpostonfail],
3130
"retries": 5,
3231
"retry_delay": timedelta(minutes=5),
3332
}

cob_datapipeline/dspace_harvest_dag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from datetime import datetime, timedelta
33
import os
44
import pendulum
5-
from tulflow import harvest, tasks
5+
from tulflow import harvest
66
from cob_datapipeline import helpers
77
from airflow.hooks.base import BaseHook
88
from airflow.models import Variable

0 commit comments

Comments
 (0)