Skip to content

Commit 1898969

Browse files
committed
Fix nocover
1 parent 9652cfa commit 1898969

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

djangocms_frontend/fields.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
from djangocms_text.fields import HTMLFormField # noqa F401
1515

1616
HTMLsanitized = True
17-
elif apps.is_installed("djangocms_text_ckeditor"):
17+
elif apps.is_installed("djangocms_text_ckeditor"): # pragma: no cover
1818
from djangocms_text_ckeditor.fields import HTMLFormField # noqa F401
1919

2020
HTMLsanitized = True
21-
else:
21+
else: # pragma: no cover
2222
HTMLFormField = forms.CharField
2323
HTMLsanitized = False
2424

0 commit comments

Comments
 (0)