shared/templates/sudo_defaults_option/template.py
Function preprocess
has a Cognitive Complexity of 17 (exceeds 7 allowed). Consider refactoring. Open
Open
def preprocess(data, lang):
# Default value of default_is_enabled is false;
# When variable_name is set, this option is disabled.
# It is not easy to check if the value of an XCCDF Value is the default in a template.
data["default_is_enabled"] = parse_template_boolean_value(data, parameter="default_is_enabled", default_value=False)
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Refactor this function to reduce its Cognitive Complexity from 17 to the 15 allowed. Open
Open
def preprocess(data, lang):
- Read upRead up
- Exclude checks
Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.
See
Line too long (120 > 99 characters) Open
Open
data["default_is_enabled"] = parse_template_boolean_value(data, parameter="default_is_enabled", default_value=False)
- Read upRead up
- Exclude checks
Limit all lines to a maximum of 79 characters.
There are still many devices around that are limited to 80 character
lines; plus, limiting windows to 80 characters makes it possible to
have several windows side-by-side. The default wrapping on such
devices looks ugly. Therefore, please limit all lines to a maximum
of 79 characters. For flowing long blocks of text (docstrings or
comments), limiting the length to 72 characters is recommended.
Reports error E501.