c0fec0de/anytree

View on GitHub
anytree/resolver.py

Summary

Maintainability
B
6 hrs
Test Coverage

Function __glob has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
Wontfix

    def __glob(self, node, parts):
        if ASSERTIONS:  # pragma: no branch
            assert node is not None

        if not parts:
Severity: Minor
Found in anytree/resolver.py - About 3 hrs 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

File resolver.py has 287 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# -*- coding: utf-8 -*-


from __future__ import print_function

Severity: Minor
Found in anytree/resolver.py - About 2 hrs to fix

    Function get has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

        def get(self, node, path):
            """
            Return instance at `path`.
    
            An example module tree:
    Severity: Minor
    Found in anytree/resolver.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 has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Wontfix

        def __find(self, node, pat, remainder):
            matches = []
            for child in node.children:
                name = _getattr(child, self.pathattr)
                try:
    Severity: Minor
    Found in anytree/resolver.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 __start has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

        def __start(self, node, path, cmp_):
            sep = node.separator
            parts = path.split(sep)
            # resolve root
            if path.startswith(sep):
    Severity: Minor
    Found in anytree/resolver.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

    Avoid too many return statements within this function.
    Open

            return matches
    Severity: Major
    Found in anytree/resolver.py - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

                  return matches
      Severity: Major
      Found in anytree/resolver.py - About 30 mins to fix

        There are no issues that match your filters.

        Category
        Status