Skip to content

Commit

Permalink
fix identation
Browse files Browse the repository at this point in the history
  • Loading branch information
edulauer committed Jun 21, 2024
1 parent ecad443 commit dee5dd5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/notification/email_sender.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ def generate_email_content(self) -> str:
item_html += f"<p class='abstract-marker'>{item['abstract']}</p><br><br>"
blocks.append(textwrap.dedent(item_html))

blocks.append("---")
if self.specs.footer_text:
blocks.append(self.specs.footer_text)
blocks.append("---")
if self.specs.footer_text:
blocks.append(self.specs.footer_text)

return markdown.markdown("\n".join(blocks))

Expand Down

0 comments on commit dee5dd5

Please sign in to comment.