fix flake8

This commit is contained in:
Richard Schreiber
2024-11-22 12:57:22 +01:00
parent d1a6ab89fe
commit 6df3c121b4
2 changed files with 2 additions and 1 deletions

View File

@@ -20,7 +20,7 @@
# <https://www.gnu.org/licenses/>. # <https://www.gnu.org/licenses/>.
# #
from django import template from django import template
from django.utils.html import format_html, mark_safe from django.utils.html import format_html
register = template.Library() register = template.Library()

View File

@@ -36,6 +36,7 @@ def textbubble(type, *args, **kwargs):
) )
) )
@register.simple_tag @register.simple_tag
def endtextbubble(): def endtextbubble():
return mark_safe('</span>') return mark_safe('</span>')