Skip to content

Commit

Permalink
Fix IOTJ error handling when no open calls
Browse files Browse the repository at this point in the history
Remove throwing an error when no open calls in the IOT Journal are
found.
  • Loading branch information
klb2 committed Nov 13, 2023
1 parent fb34535 commit 48604dc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions others.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ def _iotj_cfp(journal="IOTJ"):
continue
pub_date = "Unknown"
rows.append([topic, due_date, pub_date, journal])
if not rows:
raise ValueError("No entries found")
data = pd.DataFrame(
data=rows, columns=[COL_TOPIC, COL_DEADLINE, COL_PUB_DATE, COL_JOURNAL]
)
Expand Down

0 comments on commit 48604dc

Please sign in to comment.