django/django

View on GitHub

Showing 2,094 of 2,094 total issues

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

    def _alter_column_type_sql(
Severity: Minor
Found in django/contrib/gis/db/backends/postgis/schema.py - About 45 mins to fix

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

        def metadata(self, value):
            """
            Set the metadata. Update only the domains that are contained in the
            value dictionary.
            """
    Severity: Minor
    Found in django/contrib/gis/gdal/raster/base.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

                        if isinstance(val, str):
                            val_fmt = ' ("%s")'
                        else:
                            val_fmt = " (%s)"
                        output += val_fmt % val
    Severity: Major
    Found in django/contrib/gis/utils/ogrinfo.py - About 45 mins to fix

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

          def __init__(self, path=None, cache=0, country=None, city=None):
              """
              Initialize the GeoIP object. No parameters are required to use default
              settings. Keyword arguments may be passed in to customize the locations
              of the GeoIP datasets.
      Severity: Minor
      Found in django/contrib/gis/geoip2.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

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

          def __getitem__(self, index):
              "Allows use of the index [] operator to get a layer at the index."
              if isinstance(index, str):
                  try:
                      layer = capi.get_layer_by_name(self.ptr, force_bytes(index))
      Severity: Minor
      Found in django/contrib/gis/gdal/datasource.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

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

      def add_srs_entry(
          srs, auth_name="EPSG", auth_srid=None, ref_sys_name=None, database=None
      ):
          """
          Take a GDAL SpatialReference system and add its information to the
      Severity: Minor
      Found in django/contrib/gis/utils/srs.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

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

          def __set__(self, instance, value):
              """
              Retrieve the proxied geometry or raster with the corresponding class
              specified during initialization.
      
      
      Severity: Minor
      Found in django/contrib/gis/db/models/proxy.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

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

      def kml(request, label, model, field_name=None, compress=False, using=DEFAULT_DB_ALIAS):
      Severity: Minor
      Found in django/contrib/gis/sitemaps/views.py - About 45 mins to fix

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

            def feature_kwargs(self, feat):
                """
                Given an OGR Feature, return a dictionary of keyword arguments for
                constructing the mapped model.
                """
        Severity: Minor
        Found in django/contrib/gis/utils/layermapping.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

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

            def __init__(self, *args, **kwargs):
                if self.support_js_module_import_aggregation:
                    self.patterns += (self._js_module_import_aggregation_patterns,)
                super().__init__(*args, **kwargs)
                self._patterns = {}
        Severity: Minor
        Found in django/contrib/staticfiles/storage.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

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

            def get_domain(self, site=None):
                # Determine domain
                if site is None:
                    if django_apps.is_installed("django.contrib.sites"):
                        Site = django_apps.get_model("sites.Site")
        Severity: Minor
        Found in django/contrib/sitemaps/__init__.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

                                if kwargs.get(k, v) != v:
                                    matches = False
                                    break
                            if not matches:
        Severity: Major
        Found in django/urls/resolvers.py - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                  if not found and (not line or plural_forms_re.search(line)):
                                      line = plural_form_line
                                      found = True
                                  lines.append(line)
          Severity: Major
          Found in django/core/management/commands/makemessages.py - About 45 mins to fix

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

                def check_response(self, response, callback, name=None):
                    """
                    Raise an error if the view returned None or an uncalled coroutine.
                    """
                    if not (response is None or asyncio.iscoroutine(response)):
            Severity: Minor
            Found in django/core/handlers/base.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

                                    if self.verbosity > 0:
                                        self.stdout.write(
                                            self.style.MIGRATE_LABEL(f"  Pruning {app}.{name}"),
                                            ending="",
                                        )
            Severity: Major
            Found in django/core/management/commands/migrate.py - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                      if graph.nodes[plan_node].replaces:
                                          title += " (%s squashed migrations)" % len(
                                              graph.nodes[plan_node].replaces
                                          )
                                      applied_migration = loader.applied_migrations.get(plan_node)
              Severity: Major
              Found in django/core/management/commands/showmigrations.py - About 45 mins to fix

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

                    def _check_pattern_unmatched_angle_brackets(self):
                        warnings = []
                        msg = "Your URL pattern %s has an unmatched '%s' bracket."
                        brackets = re.findall(r"[<>]", str(self._route))
                        open_bracket_counter = 0
                Severity: Minor
                Found in django/urls/resolvers.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

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

                    def fetch_command(self, subcommand):
                        """
                        Try to fetch the given subcommand, printing a message with the
                        appropriate command called from the command line (usually
                        "django-admin" or "manage.py") if it can't be found.
                Severity: Minor
                Found in django/core/management/__init__.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

                                        if os.path.abspath(dirpath).startswith(os.path.dirname(path)):
                                            locale_dir = path
                                            break
                                    locale_dir = locale_dir or self.default_locale_path or NO_LOCALE_DIR
                Severity: Major
                Found in django/core/management/commands/makemessages.py - About 45 mins to fix

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

                  def create_default_site(
                  Severity: Minor
                  Found in django/contrib/sites/management.py - About 45 mins to fix
                    Severity
                    Category
                    Status
                    Source
                    Language