cogniteev/docido-python-sdk

View on GitHub
docido_sdk/toolbox/text.py

Summary

Maintainability
B
4 hrs
Test Coverage

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

def to_unicode(text, charset=None):
    """Convert input to an `unicode` object.

    For a `str` object, we'll first try to decode the bytes using the given
    `charset` encoding (or UTF-8 if none is specified), then we fall back to
Severity: Minor
Found in docido_sdk/toolbox/text.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 levenshtein has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

def levenshtein(s, t):
    """ Compute the Levenshtein distance between 2 strings, which
    is the minimum number of operations required to perform on a string to
    get another one.

Severity: Minor
Found in docido_sdk/toolbox/text.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 unicode(text)
Severity: Major
Found in docido_sdk/toolbox/text.py - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

                return ' '.join([to_unicode(arg) for arg in text.args])
    Severity: Major
    Found in docido_sdk/toolbox/text.py - About 30 mins to fix

      There are no issues that match your filters.

      Category
      Status