django/django

View on GitHub
django/forms/models.py

Summary

Maintainability
F
1 wk
Test Coverage

File models.py has 1315 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""
Helper functions for creating Form classes from Django models
and database field objects.
"""

Severity: Major
Found in django/forms/models.py - About 3 days to fix

    Function validate_unique has a Cognitive Complexity of 50 (exceeds 5 allowed). Consider refactoring.
    Open

        def validate_unique(self):
            # Collect unique_checks and date_checks to run from all the forms.
            all_unique_checks = set()
            all_date_checks = set()
            forms_to_delete = self.deleted_forms
    Severity: Minor
    Found in django/forms/models.py - About 7 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 fields_for_model has a Cognitive Complexity of 43 (exceeds 5 allowed). Consider refactoring.
    Open

    def fields_for_model(
        model,
        fields=None,
        exclude=None,
        widgets=None,
    Severity: Minor
    Found in django/forms/models.py - About 6 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 add_fields has a Cognitive Complexity of 24 (exceeds 5 allowed). Consider refactoring.
    Open

        def add_fields(self, form, index):
            """Add a hidden field for the object's primary key."""
            from django.db.models import AutoField, ForeignKey, OneToOneField
    
            self._pk_field = pk = self.model._meta.pk
    Severity: Minor
    Found in django/forms/models.py - About 3 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 inlineformset_factory has 25 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    def inlineformset_factory(
    Severity: Major
    Found in django/forms/models.py - About 3 hrs to fix

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

      def _get_foreign_key(parent_model, model, fk_name=None, can_fail=False):
          """
          Find and return the ForeignKey from model to parent if there is one
          (return None if can_fail is True and no such field exists). If fk_name is
          provided, assume it is the name of the ForeignKey field. Unless can_fail is
      Severity: Minor
      Found in django/forms/models.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 modelformset_factory has 23 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      def modelformset_factory(
      Severity: Major
      Found in django/forms/models.py - About 2 hrs to fix

        Function _construct_form has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
        Open

            def _construct_form(self, i, **kwargs):
                pk_required = i < self.initial_form_count()
                if pk_required:
                    if self.is_bound:
                        pk_key = "%s-%s" % (self.add_prefix(i), self.model._meta.pk.name)
        Severity: Minor
        Found in django/forms/models.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 construct_instance has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
        Open

        def construct_instance(form, instance, fields=None, exclude=None):
            """
            Construct and return a model instance from the bound ``form``'s
            ``cleaned_data``, but do not save the returned instance to the database.
            """
        Severity: Minor
        Found in django/forms/models.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 _update_errors has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

            def _update_errors(self, errors):
                # Override any validation error messages defined at the model level
                # with those defined at the form level.
                opts = self._meta
        
        
        Severity: Minor
        Found in django/forms/models.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 fields_for_model has 13 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        def fields_for_model(
        Severity: Major
        Found in django/forms/models.py - About 1 hr to fix

          Function __new__ has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
          Open

              def __new__(mcs, name, bases, attrs):
                  new_class = super().__new__(mcs, name, bases, attrs)
          
                  if bases == (BaseModelForm,):
                      return new_class
          Severity: Minor
          Found in django/forms/models.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 __init__ has 12 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def __init__(
          Severity: Major
          Found in django/forms/models.py - About 1 hr to fix

            Function modelform_factory has 11 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            def modelform_factory(
            Severity: Major
            Found in django/forms/models.py - About 1 hr to fix

              Function __init__ has 11 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  def __init__(
              Severity: Major
              Found in django/forms/models.py - About 1 hr to fix

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

                def modelform_factory(
                    model,
                    form=ModelForm,
                    fields=None,
                    exclude=None,
                Severity: Minor
                Found in django/forms/models.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 _get_validation_exclusions has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                Open

                    def _get_validation_exclusions(self):
                        """
                        For backwards-compatibility, exclude several types of fields from model
                        validation. See tickets #12507, #12521, #12553.
                        """
                Severity: Minor
                Found in django/forms/models.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 save_existing_objects has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                Open

                    def save_existing_objects(self, commit=True):
                        self.changed_objects = []
                        self.deleted_objects = []
                        if not self.initial_forms:
                            return []
                Severity: Minor
                Found in django/forms/models.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 add_fields has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                Open

                    def add_fields(self, form, index):
                        super().add_fields(form, index)
                        if self._pk_field == self.fk:
                            name = self._pk_field.name
                            kwargs = {"pk_field": True}
                Severity: Minor
                Found in django/forms/models.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 __init__ has 8 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    def __init__(
                Severity: Major
                Found in django/forms/models.py - About 1 hr to fix

                  Function _save_m2m has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                  Open

                      def _save_m2m(self):
                          """
                          Save the many-to-many fields and generic relations for this form.
                          """
                          cleaned_data = self.cleaned_data
                  Severity: Minor
                  Found in django/forms/models.py - About 55 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

                  Function __init__ has 7 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      def __init__(
                  Severity: Major
                  Found in django/forms/models.py - About 50 mins to fix

                    Function _check_values has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def _check_values(self, value):
                            """
                            Given a list of possible PK values, return a QuerySet of the
                            corresponding objects. Raise a ValidationError if a given value is
                            invalid (not a valid PK, not in the queryset, etc.)
                    Severity: Minor
                    Found in django/forms/models.py - About 45 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

                    Avoid deeply nested control flow statements.
                    Open

                                            for field in unique_check:
                                                if field in form.cleaned_data:
                                                    del form.cleaned_data[field]
                                        # mark the data as seen
                                        seen_data.add(row_data)
                    Severity: Major
                    Found in django/forms/models.py - About 45 mins to fix

                      Function __init__ has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                      Open

                          def __init__(
                              self,
                              data=None,
                              files=None,
                              instance=None,
                      Severity: Minor
                      Found in django/forms/models.py - About 45 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

                      Consider simplifying this complex logical expression.
                      Open

                                  if (
                                      not isinstance(fk, ForeignKey)
                                      or (
                                          # ForeignKey to proxy models.
                                          fk.remote_field.model._meta.proxy
                      Severity: Major
                      Found in django/forms/models.py - About 40 mins to fix

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

                            def __init__(self, parent_instance, *args, pk_field=False, to_field=None, **kwargs):
                        Severity: Minor
                        Found in django/forms/models.py - About 35 mins to fix

                          Function model_to_dict has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                          Open

                          def model_to_dict(instance, fields=None, exclude=None):
                              """
                              Return a dict containing the data in ``instance`` suitable for passing as
                              a Form's ``initial`` keyword argument.
                          
                          
                          Severity: Minor
                          Found in django/forms/models.py - About 35 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

                          Function save_new_objects has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                          Open

                              def save_new_objects(self, commit=True):
                                  self.new_objects = []
                                  for form in self.extra_forms:
                                      if not form.has_changed():
                                          continue
                          Severity: Minor
                          Found in django/forms/models.py - About 35 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

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

                              def save(self, commit=True):
                                  """
                                  Save model instances for every form, adding and changing instances
                                  as necessary, and return the list of instances.
                                  """
                          Severity: Minor
                          Found in django/forms/models.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

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

                              def clean(self, value):
                                  if value in self.empty_values:
                                      if self.pk_field:
                                          return None
                                      # if there is no value act as we did before.
                          Severity: Minor
                          Found in django/forms/models.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

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

                          def apply_limit_choices_to_to_formfield(formfield):
                              """Apply limit_choices_to to the formfield's queryset if needed."""
                              from django.db.models import Exists, OuterRef, Q
                          
                              if hasattr(formfield, "queryset") and hasattr(formfield, "get_limit_choices_to"):
                          Severity: Minor
                          Found in django/forms/models.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

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

                              def get_queryset(self):
                                  if not hasattr(self, "_queryset"):
                                      if self.queryset is not None:
                                          qs = self.queryset
                                      else:
                          Severity: Minor
                          Found in django/forms/models.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

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

                              def _post_clean(self):
                                  opts = self._meta
                          
                                  exclude = self._get_validation_exclusions()
                          
                          
                          Severity: Minor
                          Found in django/forms/models.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

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

                              def _construct_form(self, i, **kwargs):
                                  form = super()._construct_form(i, **kwargs)
                                  if self.save_as_new:
                                      mutable = getattr(form.data, "_mutable", None)
                                      # Allow modifying an immutable QueryDict.
                          Severity: Minor
                          Found in django/forms/models.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