Showing 267 of 577 total issues
Function get_explanation
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def get_explanation(type, scan):
calculation = get_severity(scan)
now = timezone.now().isoformat()
explained_on = scan.comply_or_explain_explained_on.isoformat() if scan.comply_or_explain_explained_on else now
- 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
Function validate_flat_organization
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def validate_flat_organization(flat_organization: Dict):
layer = OrganizationType.objects.all().filter(name=flat_organization.get("layer", "")).first()
if not layer:
raise ValueError(
f"Layer {flat_organization.get('layer', '')} " f"not defined. Is this layer defined in this installation?"
- 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
Function list_scans_after_dead_endpoint
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def list_scans_after_dead_endpoint():
dead_endpoints = Endpoint.objects.all().filter(is_dead=True)
for dead_endpoint in dead_endpoints:
scans_after_dead = EndpointGenericScan.objects.all().filter(
endpoint=dead_endpoint, last_scan_moment__gte=dead_endpoint.is_dead_since
- 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
Function get_all_latest_scans
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def get_all_latest_scans(country, organization_type):
dataset = {
"scans": defaultdict(list),
"render_date": timezone.now().isoformat(),
- 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
Function default_organization_rating
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def default_organization_rating(organizations: List[int]):
"""
Generate default ratings so all organizations are on the map (as being grey). This prevents
empty spots / holes.
:return:
- 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
Function handle
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def handle(self, *app_labels, **options):
if options["list"]:
log.info("Currently available administrative regions:")
log.info("Hint: add the via the admin interface.")
- 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
Function get_version
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def get_version():
"""Determine the most appropriate version number for this package."""
# prefer explicit version provided by (docker) build environment
if os.path.exists('version'):
- 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"