Skip to content

Commit

Permalink
Fixes formatting and removes unused imported libraries.
Browse files Browse the repository at this point in the history
  • Loading branch information
shelleydoljack committed Nov 27, 2024
1 parent 98dee4c commit 9cc2d98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 2 additions & 7 deletions libsys_airflow/dags/data_exports/backstage_selections.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import pathlib

from datetime import datetime, timedelta

from airflow import DAG
Expand All @@ -17,10 +15,6 @@
)

from libsys_airflow.plugins.data_exports.marc.exports import marc_for_instances
from libsys_airflow.plugins.data_exports.marc.transforms import (
change_leader_for_deletes,
clean_and_serialize_marc_files,
)

devs_to_email_addr = Variable.get("EMAIL_DEVS")

Expand All @@ -39,7 +33,8 @@
"select_backstage_records",
default_args=default_args,
schedule=CronDataIntervalTimetable(
cron=Variable.get("select_backstage", "30 22 * * FRI"), timezone="America/Los_Angeles"
cron=Variable.get("select_backstage", "30 22 * * FRI"),
timezone="America/Los_Angeles",
),
start_date=datetime(2024, 11, 18),
catchup=False,
Expand Down
2 changes: 1 addition & 1 deletion libsys_airflow/plugins/data_exports/marc/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def check_915(self, fields915: list) -> bool:
):
reject = True
return reject

def check_915_authority(self, fields915: list) -> bool:
reject = False
for field in fields915:
Expand Down

0 comments on commit 9cc2d98

Please sign in to comment.