django/django

View on GitHub
django/forms/widgets.py

Summary

Maintainability
F
4 days
Test Coverage

File widgets.py has 979 lines of code (exceeds 250 allowed). Consider refactoring.
Open

"""
HTML Widget classes
"""

import copy
Severity: Major
Found in django/forms/widgets.py - About 2 days to fix

    Function media_property has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
    Open

    def media_property(cls):
        def _media(self):
            # Get the media property of the superclass, if it exists
            sup_cls = super(cls, self)
            try:
    Severity: Minor
    Found in django/forms/widgets.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 optgroups has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def optgroups(self, name, value, attrs=None):
            """Return a list of optgroups for this widget."""
            groups = []
            has_selected = False
    
    
    Severity: Minor
    Found in django/forms/widgets.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_context has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

        def get_context(self, name, value, attrs):
            context = super().get_context(name, value, attrs)
            if self.is_localized:
                for widget in self.widgets:
                    widget.is_localized = self.is_localized
    Severity: Minor
    Found in django/forms/widgets.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 a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        def __init__(self, attrs=None, years=None, months=None, empty_label=None):
            self.attrs = attrs or {}
    
            # Optional list or tuple of years to use in the "year" select box.
            if years:
    Severity: Minor
    Found in django/forms/widgets.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 format_value has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def format_value(self, value):
            """
            Return a dict containing the year, month, and day of the current value.
            Use dict instead of a datetime to allow invalid dates such as February
            31 to display correctly.
    Severity: Minor
    Found in django/forms/widgets.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 create_option has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

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

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

          def value_from_datadict(self, data, files, name):
              y = data.get(self.year_field % name)
              m = data.get(self.month_field % name)
              d = data.get(self.day_field % name)
              if y == m == d == "":
      Severity: Minor
      Found in django/forms/widgets.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 y is not None and m is not None and d is not None:
                  input_format = get_format("DATE_INPUT_FORMATS")[0]
                  input_format = formats.sanitize_strftime_format(input_format)
                  try:
                      date_value = datetime.date(int(y), int(m), int(d))
      Severity: Major
      Found in django/forms/widgets.py - About 40 mins to fix

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

            def __init__(
        Severity: Minor
        Found in django/forms/widgets.py - About 35 mins to fix

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

              def __init__(
          Severity: Minor
          Found in django/forms/widgets.py - About 35 mins to fix

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

                def _parse_date_fmt():
                    fmt = get_format("DATE_FORMAT")
                    escaped = False
                    for char in fmt:
                        if escaped:
            Severity: Minor
            Found in django/forms/widgets.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 merge has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                def merge(*lists):
                    """
                    Merge lists while trying to keep the relative order of the elements.
                    Warn if the lists have the same elements in a different relative order.
            
            
            Severity: Minor
            Found in django/forms/widgets.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 __add__ has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                def __add__(self, other):
                    combined = Media()
                    combined._css_lists = self._css_lists[:]
                    combined._js_lists = self._js_lists[:]
                    for item in other._css_lists:
            Severity: Minor
            Found in django/forms/widgets.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

            Avoid too many return statements within this function.
            Open

                    return data.get(name)
            Severity: Major
            Found in django/forms/widgets.py - About 30 mins to fix

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

                  def __init__(self, media=None, css=None, js=None):
                      if media is not None:
                          css = getattr(media, "css", {})
                          js = getattr(media, "js", [])
                      else:
              Severity: Minor
              Found in django/forms/widgets.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 __init__ has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  def __init__(self, attrs=None):
                      if (
                          attrs is not None
                          and not self.allow_multiple_selected
                          and attrs.get("multiple", False)
              Severity: Minor
              Found in django/forms/widgets.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