Skip to content

Commit f0cfeab

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9ba3100 commit f0cfeab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

collection_prep/jinja_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def html_ify(j2_context, text):
6161
text = to_text(text)
6262

6363
paragraphs = parse(text, get_context(j2_context))
64-
t = to_html_plain(paragraphs, par_start="", par_end="")
64+
to_html_plain(paragraphs, par_start="", par_end="")
6565

6666
return text.strip()
6767

@@ -78,7 +78,7 @@ def rst_ify(j2_context, text):
7878
text = to_text(text)
7979

8080
paragraphs = parse(text, get_context(j2_context))
81-
t = to_rst_plain(paragraphs)
81+
to_rst_plain(paragraphs)
8282

8383
return text
8484

0 commit comments

Comments
 (0)