File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ def check_settings(*args, **kwargs):
1818
1919 warnings = []
2020
21- if hasattr (settings , "DJANGOCMS_FRONTEND_MINIMUM_INPUT_LENGTH" ):
21+ if hasattr (settings , "DJANGOCMS_FRONTEND_MINIMUM_INPUT_LENGTH" ): # pragma: no cover
2222 warnings .append (Warning (
2323 "The DJANGOCMS_FRONTEND_MINIMUM_INPUT_LENGTH setting was removed in djangocms-frontend 2.\n "
2424 "Use DJANGOCMS_LINK_MINIMUM_INPUT_LENGTH instead." ,
@@ -27,7 +27,7 @@ def check_settings(*args, **kwargs):
2727 id = "djangocms_frontend.W001" ,
2828 obj = "settings.DJANGOCMS_FRONTEND_MINIMUM_INPUT_LENGTH" ,
2929 ))
30- if hasattr (settings , "DJANGOCMS_FRONTEND_LINK_MODELS" ):
30+ if hasattr (settings , "DJANGOCMS_FRONTEND_LINK_MODELS" ): # pragma: no cover
3131 warnings .append (Warning (
3232 "The DJANGOCMS_FRONTEND_LINK_MODELS setting was removed in djangocms-frontend 2.\n "
3333 "djangocms-frontend 2 uses linkable models from djangocms-link. See "
You can’t perform that action at this time.
0 commit comments