Skip to content

Commit

Permalink
fix identation
Browse files Browse the repository at this point in the history
  • Loading branch information
edulauer committed Jul 25, 2024
1 parent 96abab6 commit 40d650e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/notification/email_sender.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ def generate_email_content(self) -> str:
if not self.specs.hide_filters:
sec_desc = item["section"]
item_html = f"""
<p class="secao-marker">{sec_desc}</p>
### [{item['title']}]({item['href']})
<p style='text-align:justify' class='abstract-marker'>{item['abstract']}</p>
<p class='date-marker'>{item['date']}</p>"""
<p class="secao-marker">{sec_desc}</p>
### [{item['title']}]({item['href']})
<p style='text-align:justify' class='abstract-marker'>{item['abstract']}</p>
<p class='date-marker'>{item['date']}</p>"""
blocks.append(
textwrap.indent(textwrap.dedent(item_html), " " * 4)
)
Expand Down

0 comments on commit 40d650e

Please sign in to comment.