We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9652cfa commit 1898969Copy full SHA for 1898969
djangocms_frontend/fields.py
@@ -14,11 +14,11 @@
14
from djangocms_text.fields import HTMLFormField # noqa F401
15
16
HTMLsanitized = True
17
-elif apps.is_installed("djangocms_text_ckeditor"):
+elif apps.is_installed("djangocms_text_ckeditor"): # pragma: no cover
18
from djangocms_text_ckeditor.fields import HTMLFormField # noqa F401
19
20
21
-else:
+else: # pragma: no cover
22
HTMLFormField = forms.CharField
23
HTMLsanitized = False
24
0 commit comments