diff --git a/lxml_html_clean/clean.py b/lxml_html_clean/clean.py index ef6a705..37cf3e0 100644 --- a/lxml_html_clean/clean.py +++ b/lxml_html_clean/clean.py @@ -615,10 +615,8 @@ def _remove_sneaky_css_comments(self, style): """ for match in self._find_comments(style): comment = match.group(0) - print("f", comment) if _has_javascript_scheme(comment) or _looks_like_tag_content(comment): style = style.replace(comment, "/* deleted */") - print("f", style) return style