fabiommendes/hyperpython

View on GitHub

Showing 9 of 11 total issues

Function role_singledispatch has a Cognitive Complexity of 15 (exceeds 7 allowed). Consider refactoring.
Open

def role_singledispatch(func):  # noqa: C901
    """
    Like single dispatch, but dispatch based on the type of the first argument
    and role string.
    """
Severity: Minor
Found in src/hyperpython/utils/role_dispatch.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 fragment has a Cognitive Complexity of 14 (exceeds 7 allowed). Consider refactoring.
Open

def fragment(path, **kwargs):
    """
    Compute the Hyperpython element for the given fragment path.

    Args:
Severity: Minor
Found in src/hyperpython/fragment.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 as_child has a Cognitive Complexity of 11 (exceeds 7 allowed). Consider refactoring.
Open

def as_child(value):
    """
    Convert arbitrary object to a compatible Element object.
    """

Severity: Minor
Found in src/hyperpython/core.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 h has a Cognitive Complexity of 10 (exceeds 7 allowed). Consider refactoring.
Open

def h(tag, *args, children=None, **attrs):
    """
    Creates a tag.

    It has many different signatures:
Severity: Minor
Found in src/hyperpython/tags.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 too many return statements within this function.
Open

        return Blob(value.__html__())
Severity: Major
Found in src/hyperpython/core.py - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

                return Text(data)
    Severity: Major
    Found in src/hyperpython/core.py - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

              return Element(value.tag, {}, [], value.tag in VOID_ELEMENTS)
      Severity: Major
      Found in src/hyperpython/core.py - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                return Block(value)
        Severity: Major
        Found in src/hyperpython/core.py - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                  return value.__hyperpython__()
          Severity: Major
          Found in src/hyperpython/core.py - About 30 mins to fix
            Severity
            Category
            Status
            Source
            Language