Skip to content

Commit

Permalink
more heading fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
keegansmith21 authored and jdddog committed Aug 7, 2023
1 parent 0305780 commit 2ca89ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oaebu_workflows/workflows/jstor_telescope.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def jstor_transform(
with open(download_file, "r") as tsv_file:
first_line = tsv_file.readline()
tsv_file.seek(0)
if first_line.startswith("Report_Name"):
if "Report_Name" in first_line:
line = None
while line != "\n":
line = next(tsv_file)
Expand Down

0 comments on commit 2ca89ad

Please sign in to comment.