bhgomes/wrapping

View on GitHub

Showing 5 of 5 total issues

File wrappers.py has 414 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*- #
#
# wrapping/wrappers.py
#
#
Severity: Minor
Found in wrapping/wrappers.py - About 5 hrs to fix

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

        def __init__(self, *args, **kwargs):
            """Initialize Box with custom Defaults
            :param args:
            :param kwargs:
            """
    Severity: Minor
    Found in wrapping/box_extension.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 try_import has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

    def try_import(
        names: Union[AnyStr, Sequence[AnyStr]],
        package: AnyStr = None,
        *exceptions: Exception,
        log_error: Callable[[Any], None] = lambda s: None,
    Severity: Minor
    Found in wrapping/importer.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 __delattr__ has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def __delattr__(self, name):
            """Delete Attribute in Wrapped Object or Box.
            :param name:
            :return:
            """
    Severity: Minor
    Found in wrapping/box_extension.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 _fix_boundary_ordering has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def _fix_boundary_ordering(cls, minimum, maximum):
            """
            :param minimum:
            :param maximum:
            :return:
    Severity: Minor
    Found in wrapping/wrappers.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