chrislit/abydos

View on GitHub

Showing 4,191 of 4,191 total issues

Function __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

    def __init__(
Severity: Minor
Found in abydos/distance/_jaro_winkler.py - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

                            if backtrace:
                                trace_mat[i + 1, j + 1] = 2
    
    
    Severity: Major
    Found in abydos/distance/_levenshtein.py - About 45 mins to fix

      Function sim_score has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def sim_score(self, src: str, tar: str) -> float:
              """Return the Morisita similarity of two strings.
      
              Parameters
              ----------
      Severity: Minor
      Found in abydos/distance/_morisita.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 deeply nested control flow statements.
      Open

                          if masked == 0:
                              feature_dict[feature] = '0'  # 0
                          elif masked == mask:
                              feature_dict[feature] = '+/-'  # +/-
                          elif masked & pos_mask:
      Severity: Major
      Found in abydos/phones/_phones.py - About 45 mins to fix

        Function decode has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            def decode(self, text: str) -> str:
                r"""Perform decoding of run-length-encoding (RLE).
        
                Parameters
                ----------
        Severity: Minor
        Found in abydos/compression/_rle.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 deeply nested control flow statements.
        Open

                                if mode == 2:
                                    self._ordered_tokens.append(new_token)
                                    new_token = char
                                else:
                                    new_token += char
        Severity: Major
        Found in abydos/tokenizer/_c_or_v_cluster.py - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                  if mode == 2:
                                      self._ordered_tokens.append(new_token)
                                      new_token = char
                                  else:
                                      new_token += char
          Severity: Major
          Found in abydos/tokenizer/_cv_cluster.py - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                    if backtrace:
                                        trace_mat[i + 1, j + 1] = 2
                    if backtrace:
            Severity: Major
            Found in abydos/distance/_phonetic_edit_distance.py - About 45 mins to fix

              Function __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  def __init__(
              Severity: Minor
              Found in abydos/distance/_tversky.py - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                                        if mode == 1:
                                            self._ordered_tokens.append(new_token)
                                            new_token = char
                                        else:
                                            new_token += char
                Severity: Major
                Found in abydos/tokenizer/_c_or_v_cluster.py - About 45 mins to fix

                  Function __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      def __init__(
                  Severity: Minor
                  Found in abydos/corpus/_corpus.py - About 45 mins to fix

                    Avoid deeply nested control flow statements.
                    Open

                                            while word in sentence_words:
                                                sentence_words.remove(word)
                                    for char in set(filter_chars):
                    Severity: Major
                    Found in abydos/corpus/_corpus.py - About 45 mins to fix

                      Consider simplifying this complex logical expression.
                      Open

                                  if i == 0 and word[0] == 'y':
                                      word = 'Y' + word[1:]
                                  elif word[i] == 'y' and word[i - 1] in self._vowels:
                                      word = word[:i] + 'Y' + word[i + 1 :]
                                  elif (
                      Severity: Major
                      Found in abydos/stemmer/_snowball_dutch.py - About 40 mins to fix

                        Consider simplifying this complex logical expression.
                        Open

                                if wlen > 4 and word[-3:] == 'ern':
                                    word = word[:-3]
                                elif wlen > 3 and word[-2:] in {'em', 'en', 'er', 'es'}:
                                    word = word[:-2]
                                elif wlen > 2 and (
                        Severity: Major
                        Found in abydos/stemmer/_clef_german_plus.py - About 40 mins to fix

                          Consider simplifying this complex logical expression.
                          Open

                                      if (len(word) > 4 and word[-2:] in {'em', 'er'}) or (
                                          len(word) > 5 and word[-2:] == 'nd'
                                      ):
                                          word = word[:-2]
                                      elif (word[-1] in {'e', 's', 'n'}) or (
                          Severity: Major
                          Found in abydos/stemmer/_caumanns.py - About 40 mins to fix

                            Consider simplifying this complex logical expression.
                            Open

                                        if skip:
                                            skip -= 1
                                        elif char in self._uc_vy_set:
                                            code += char
                                        # IIc
                            Severity: Major
                            Found in abydos/phonetic/_henry_early.py - About 40 mins to fix

                              Consider simplifying this complex logical expression.
                              Open

                                                          if pos0 >= 0:
                                                              while (_phonet_rules[pos0] is None) or (
                                                                  cast(str, _phonet_rules[pos0])[0] == char0
                                                              ):
                                                                  if pos0 > end3:
                              Severity: Major
                              Found in abydos/phonetic/_phonet.py - About 40 mins to fix

                                Consider simplifying this complex logical expression.
                                Open

                                        if (
                                            len(word) >= 4
                                            and word[-3] == word[-2]
                                            and word[-2] in {'a', 'e', 'o', 'u'}
                                            and word[-4] not in self._vowels
                                Severity: Major
                                Found in abydos/stemmer/_snowball_dutch.py - About 40 mins to fix

                                  Consider simplifying this complex logical expression.
                                  Open

                                              if (
                                                  word[1:2] in self._uc_c_set - {'M', 'N'}
                                                  and word[2:3] in self._uc_c_set
                                              ) or (
                                                  word[1:2] in self._uc_c_set and word[2:3] not in self._uc_c_set
                                  Severity: Major
                                  Found in abydos/phonetic/_henry_early.py - About 40 mins to fix

                                    Consider simplifying this complex logical expression.
                                    Open

                                            if matches > 1 or (
                                                matches == 1
                                                and src1_num_words == 1
                                                and tar1_num_words == 1
                                                and (tar_len_specials > 0 or src_len_specials > 0)
                                    Severity: Major
                                    Found in abydos/distance/_synoname.py - About 40 mins to fix
                                      Severity
                                      Category
                                      Status
                                      Source
                                      Language