Skip to content

Commit

Permalink
Use continue instead of break
Browse files Browse the repository at this point in the history
  • Loading branch information
jgreben committed May 13, 2024
1 parent a99d22f commit c58257e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsys_airflow/plugins/data_exports/marc/gobi.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def generate_list(self, marc_file) -> pathlib.Path:
r"^(?=(?:\d){9}[\dX](?:(?:\D*\d){3})?$)(?:[\dX]{10}|\d{13})$",
isbn,
):
break
continue

fields035 = record.get_fields("035")
field856 = record.get_fields("856")
Expand Down

0 comments on commit c58257e

Please sign in to comment.