Skip to content

Commit

Permalink
fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tarohi24 committed May 27, 2024
1 parent 08bf7e7 commit abf2267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slide_generation/fetch_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def convert_issue_to_markdown(issue: dict) -> str | None:
sections: list[tuple[str, str]] = [] # (header, body)
for line in issue["body"].splitlines():
line = line.strip()
if line.statewith("#"):
if line.startswith("#"):
sections.append((line, ''))
else:
if len(sections) > 0:
Expand Down

0 comments on commit abf2267

Please sign in to comment.