exxamalte/python-aio-georss-client

View on GitHub
aio_georss_client/geo_rss_distance_helper.py

Summary

Maintainability
A
2 hrs
Test Coverage

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 _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 _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

There are no issues that match your filters.

Category
Status