Nekmo/pip-rating

View on GitHub
pip_rating/results.py

Summary

Maintainability
C
7 hrs
Test Coverage

File results.py has 381 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import datetime
import json
import os
from typing import Optional, TYPE_CHECKING, Union, TypedDict, List, Any

Severity: Minor
Found in pip_rating/results.py - About 5 hrs to fix

    Function show_packages_results has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

        def show_packages_results(self, dependencies: "Dependencies"):
            global_rating_score = self.get_global_rating_score(dependencies)
            for package in dependencies.packages.values():
                if package.name not in dependencies.req_file:
                    continue
    Severity: Minor
    Found in pip_rating/results.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 show_results has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def show_results(self, dependencies: "Dependencies", format_name: str = "text"):
            """Show results depending on the format. Optionally save to a file.
    
            :param dependencies: Dependencies
            :param format_name: Format name. Choices: FORMATS
    Severity: Minor
    Found in pip_rating/results.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