exxamalte/python-aio-georss-client

View on GitHub

Showing 15 of 15 total issues

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

    def _ray_crosses_segment(point: Point, edge: tuple[Point, Point]):
        """Use ray-casting algorithm to check provided point and edge."""
        a, b = edge
        px = point.longitude
        py = point.latitude
Severity: Minor
Found in aio_georss_client/xml_parser/geometry.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 _perpendicular_point has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    def _perpendicular_point(edge: tuple[Point, Point], point: Point) -> Point | None:
        """Find a perpendicular point on the edge to the provided point."""
        a, b = edge
        # Safety check: a and b can't be an edge if they are the same point.
        if a == b:
Severity: Minor
Found in aio_georss_client/geo_rss_distance_helper.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 aio_georss_client/status_update.py - About 1 hr to fix

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

        def __init__(
    Severity: Minor
    Found in aio_georss_client/feed_manager.py - About 35 mins to fix

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

          def __init__(
      Severity: Minor
      Found in aio_georss_client/feed.py - About 35 mins to fix

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

            def _find_bounding_box_target_point_top(
                home_coordinates: tuple[float, float],
                bbox: BoundingBox,
                transposed_point_longitude: float,
                transposed_top_right_longitude: float,
        Severity: Minor
        Found in aio_georss_client/geo_rss_distance_helper.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 coordinates has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def coordinates(self) -> tuple[float, float] | None:
                """Return the best coordinates (latitude, longitude) of this entry."""
                # This looks for the first point in the list of geometries. If there
                # is no point then return the first entry.
                if self.geometries and len(self.geometries) >= 1:
        Severity: Minor
        Found in aio_georss_client/feed_entry.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 is_inside has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def is_inside(self, point: Point) -> bool:
                """Check if the provided point is inside this bounding box."""
                if point:
                    transposed_point_longitude: float = point.longitude
                    transposed_top_right_longitude = self._top_right.longitude
        Severity: Minor
        Found in aio_georss_client/xml_parser/geometry.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 _find_bounding_box_target_point_bottom has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def _find_bounding_box_target_point_bottom(
                home_coordinates: tuple[float, float],
                bbox: BoundingBox,
                transposed_point_longitude: float,
                transposed_top_right_longitude: float,
        Severity: Minor
        Found in aio_georss_client/geo_rss_distance_helper.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 _attribute has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            def _attribute(self, names: list[str]) -> Optional:
                """Get an attribute from this feed or feed item."""
                if self._source and names:
                    # Try each name, and return the first value that is not None.
                    for name in names:
        Severity: Minor
        Found in aio_georss_client/xml_parser/feed_dict_source.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 key, value
        Severity: Major
        Found in aio_georss_client/xml_parser/__init__.py - About 30 mins to fix

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

              def postprocessor(
                  path: list[str], key: str, value: str
              ) -> tuple[str, str | float | int | datetime | tuple]:
                  """Conduct type conversion for selected keys."""
                  try:
          Severity: Minor
          Found in aio_georss_client/xml_parser/__init__.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 category has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              def category(self) -> list[str] | None:
                  """Return the categories of this feed item."""
                  category = self._attribute([XML_TAG_CATEGORY])
                  if category:
                      if isinstance(category, str) or isinstance(category, dict):
          Severity: Minor
          Found in aio_georss_client/xml_parser/feed_or_feed_item.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 geometries has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              def geometries(self) -> list[Geometry] | None:
                  """Return all geometries of this feed item."""
                  geometries = []
                  for entry in [
                      self._geometry_georss_point(),
          Severity: Minor
          Found in aio_georss_client/xml_parser/feed_item.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 is_inside has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              def is_inside(self, point: Point | None) -> bool:
                  """Check if the provided point is inside this polygon."""
                  if point:
                      crossings: int = 0
                      for edge in self.edges:
          Severity: Minor
          Found in aio_georss_client/xml_parser/geometry.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

          Severity
          Category
          Status
          Source
          Language