Skip to content

Commit

Permalink
small bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
djl11 committed Jan 23, 2025
1 parent b7705e4 commit beca2e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interfaces/ai_tutor/fetch_and_parse_pdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,11 +538,11 @@ def parse_into_pages():
)
.replace(
"{i1}",
str(subquestions[1]),
str(subquestions[1] if len(subquestions) > 1 else ""),
)
.replace(
"{i2}",
str(subquestions[2]),
str(subquestions[2] if len(subquestions) > 2 else ""),
).replace(
"{n0}",
str(latest_num + 1),
Expand Down

0 comments on commit beca2e9

Please sign in to comment.