From 1c7ed30d65d6cbbab17070d1c849c09e885557f6 Mon Sep 17 00:00:00 2001
From: Kylie <84819232+EvilDrPurple@users.noreply.github.com>
Date: Sat, 31 Jul 2021 19:54:59 -0400
Subject: [PATCH] Update sanitize_html.py
---
bookwyrm/sanitize_html.py | 3 ---
1 file changed, 3 deletions(-)
diff --git a/bookwyrm/sanitize_html.py b/bookwyrm/sanitize_html.py
index 1a8540e32..0be64c58c 100644
--- a/bookwyrm/sanitize_html.py
+++ b/bookwyrm/sanitize_html.py
@@ -26,8 +26,6 @@ class InputHtmlParser(HTMLParser): # pylint: disable=abstract-method
self.output = []
# if the html appears invalid, we just won't allow any at all
self.allow_html = True
- self.output.append(("data", ""))
- self.output.append(("data", ""))
def handle_starttag(self, tag, attrs):
"""check if the tag is valid"""
@@ -58,7 +56,6 @@ class InputHtmlParser(HTMLParser): # pylint: disable=abstract-method
def get_output(self):
"""convert the output from a list of tuples to a string"""
- self.output.append(("data", ""))
if self.tag_stack:
self.allow_html = False
if not self.allow_html: