diff --git a/shared/utils.py b/shared/utils.py index ad56f316399b23e542bccd4b121c4b6a825370a3..a720a600694b033ddd8fbd142d909ec434132ccc 100644 --- a/shared/utils.py +++ b/shared/utils.py @@ -71,9 +71,7 @@ def strip_all_html_tags(value: str): :param value: string to sanitize """ - return bleach.clean( - value, tags=[], attributes=[], styles=[], strip=True, strip_comments=True - ) + return bleach.clean(value, tags=[], attributes=[], strip=True, strip_comments=True) def trim_to_length(value: str, max_length: int = 150):