c0fec0de/anytree

View on GitHub
anytree/node/nodemixin.py

Summary

Maintainability
A
0 mins
Test Coverage

File nodemixin.py has 465 lines of code (exceeds 250 allowed). Consider refactoring.
Invalid

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

import warnings

from anytree.iterators import PreOrderIter
Severity: Minor
Found in anytree/node/nodemixin.py - About 7 hrs to fix

    NodeMixin has 32 functions (exceeds 20 allowed). Consider refactoring.
    Invalid

    class NodeMixin:
    
        """
        The :any:`NodeMixin` class extends any Python class to a tree node.
    
    
    Severity: Minor
    Found in anytree/node/nodemixin.py - About 4 hrs to fix

      Function children has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Invalid

          def children(self, children):
              # convert iterable to tuple
              children = tuple(children)
              NodeMixin.__check_children(children)
              # ATOMIC start
      Severity: Minor
      Found in anytree/node/nodemixin.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

      Function __check_children has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Wontfix

          def __check_children(children):
              seen = set()
              for child in children:
                  if not isinstance(child, NodeMixin):
                      msg = "Cannot add non-node object %r. It is not a subclass of 'NodeMixin'." % (child,)
      Severity: Minor
      Found in anytree/node/nodemixin.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