ejplatform/ej-server

View on GitHub
src/ej_clusters/models/cluster_queryset.py

Summary

Maintainability
B
5 hrs
Test Coverage

File cluster_queryset.py has 276 lines of code (exceeds 250 allowed). Consider refactoring.
Open

from logging import getLogger

from boogie.models import QuerySet, F, Manager, Value, IntegerField
from django.contrib.auth import get_user_model
from sidekick import import_later
Severity: Minor
Found in src/ej_clusters/models/cluster_queryset.py - About 2 hrs to fix

    Function _stereotypes_votes_table has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        def _stereotypes_votes_table(self, mean, kind_col, cluster_col, **kwargs):
            # Prepare stereotype votes
            if mean:
                stereotype_votes = self.mean_stereotypes_votes_table()
            else:
    Severity: Minor
    Found in src/ej_clusters/models/cluster_queryset.py - About 1 hr to fix

    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 votes_table has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def votes_table(
    Severity: Major
    Found in src/ej_clusters/models/cluster_queryset.py - About 50 mins to fix

      Function _save_clusterization has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def _save_clusterization(self, pipeline, cluster_ids, stereotype, user, commit=True):
      Severity: Minor
      Found in src/ej_clusters/models/cluster_queryset.py - About 35 mins to fix

        Function _users_votes_table has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            def _users_votes_table(self, non_classified, kind_col, cluster_col, **kwargs):
                users = self.participants() if non_classified else self.users()
                user_votes = users.votes_table(**kwargs)
        
                if kind_col is not None:
        Severity: Minor
        Found in src/ej_clusters/models/cluster_queryset.py - About 25 mins to fix

        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

        There are no issues that match your filters.

        Category
        Status