django/django

View on GitHub
django/db/models/options.py

Summary

Maintainability
D
2 days
Test Coverage

File options.py has 801 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import bisect
import copy
from collections import defaultdict

from django.apps import apps
Severity: Major
Found in django/db/models/options.py - About 1 day to fix

    Function contribute_to_class has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

        def contribute_to_class(self, cls, name):
            from django.db import connection
            from django.db.backends.utils import truncate_name
    
            cls._meta = self
    Severity: Minor
    Found in django/db/models/options.py - About 2 hrs 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 __init__ has 41 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def __init__(self, meta, app_label=None):
            self._get_fields_cache = {}
            self.local_fields = []
            self.local_many_to_many = []
            self.private_fields = []
    Severity: Minor
    Found in django/db/models/options.py - About 1 hr to fix

      Function _get_fields has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def _get_fields(
      Severity: Minor
      Found in django/db/models/options.py - About 45 mins to fix

        There are no issues that match your filters.

        Category
        Status