mordred-descriptor/mordred

View on GitHub
mordred/_base/descriptor.py

Summary

Maintainability
B
6 hrs
Test Coverage

File descriptor.py has 290 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import inspect
import operator
from abc import ABCMeta, abstractmethod
from contextlib import contextmanager
from distutils.version import StrictVersion
Severity: Minor
Found in mordred/_base/descriptor.py - About 2 hrs to fix

    Descriptor has 23 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Descriptor(six.with_metaclass(DescriptorMeta, object)):
        r"""Abstract base class of descriptors.
    
        Attributes:
            mol(rdkit.Mol): target molecule
    Severity: Minor
    Found in mordred/_base/descriptor.py - About 2 hrs to fix

      Function __new__ has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def __new__(cls, classname, bases, dict):
              __init__ = dict.get("__init__")
              if __init__ is None:
                  for base in bases:
                      __init__ = getattr(base, "__init__", None)
      Severity: Minor
      Found in mordred/_base/descriptor.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

      There are no issues that match your filters.

      Category
      Status