julienmalard/Tinamit

View on GitHub

Showing 184 of 188 total issues

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

    def incrementar(símismo, rebanada):
        def incr_mod(mod, d, reb):
            try:
                mod.incr(reb)
            except BaseException as e:
Severity: Minor
Found in tinamit0/conect/_mod.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

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

def lista_fechas_igual(l1, l2):
    lista_ls = [l1, l2]
    for i, l in enumerate(lista_ls):
        if not isinstance(l, np.ndarray):
            lista_ls[i] = np.array(pd.to_datetime(l), dtype='datetime64')
Severity: Minor
Found in tinamit0/pruebas/test_datos.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

Avoid too many return statements within this function.
Open

        return pd.to_datetime([dts])
Severity: Major
Found in tinamit0/mod/extern.py - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

                return lambda p, vr: comp_1(p=p, vr=vr) == comp_2(p=p, vr=vr)
    Severity: Major
    Found in tinamit0/calibs/sintx/_vstr_transf.py - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

          return fnt
      Severity: Major
      Found in tinamit0/datos/bd.py - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

                    return pm.math.eq(comp_1, comp_2)
        Severity: Major
        Found in tinamit0/calibs/sintx/_vstr_transf.py - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

                  return pd.Index(dts)
          Severity: Major
          Found in tinamit0/mod/extern.py - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                        return pm.math.neq(comp_1, comp_2)
            Severity: Major
            Found in tinamit0/calibs/sintx/_vstr_transf.py - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                          return lambda p, vr: comp_1(p=p, vr=vr) != comp_2(p=p, vr=vr)
              Severity: Major
              Found in tinamit0/calibs/sintx/_vstr_transf.py - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                            return FuenteCSV(fnt, lugares=lugares, fechas=fechas)
                Severity: Major
                Found in tinamit0/datos/bd.py - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                          return potenciales[nmb_elegida]
                  Severity: Major
                  Found in tinamit0/envolt/bf/_auto.py - About 30 mins to fix

                    Function _proc_l has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                    def _proc_líms(líms):
                        if líms is None:
                            return -np.inf, np.inf
                        else:
                            return -np.inf if líms[0] is None else líms[0], np.inf if líms[1] is None else líms[1]
                    Severity: Minor
                    Found in tinamit0/mod/var.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 agregar_trad has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                    def agregar_trad(unid, trad, leng_trad, leng_orig=None, guardar=True):
                        """
                        Agregar una traducción a una unidad.
                    
                        Parameters
                    Severity: Minor
                    Found in tinamit0/unids/trads.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 _obt_ has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                    def _obt_índ(dts):
                        if isinstance(dts, pd.Index):
                            return dts
                        if isinstance(dts, pd.DataFrame):
                            return dts.index
                    Severity: Minor
                    Found in tinamit0/mod/extern.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 _a_np has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                    def _a_np(val):
                        if isinstance(val, xr.DataArray):
                            val = val.values
                        if isinstance(val, np.ndarray):
                            if val.shape:
                    Severity: Minor
                    Found in tinamit0/mod/var.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 numpyficar has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                    def numpyficar(dic):
                        nuevo = {}
                        for ll, v in dic.items():
                            if isinstance(v, dict):
                                nuevo[ll] = numpyficar(v)
                    Severity: Minor
                    Found in tinamit0/cositas.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 gen_mod_pysd has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                    def gen_mod_pysd(archivo):
                        nmbr, ext = os.path.splitext(archivo)
                    
                        if ext.lower() == '.py':
                            return pysd.load(archivo)
                    Severity: Minor
                    Found in src/tinamit/envolt/mds/pysd/funcs.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 _obt_a_t has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                        def _obt_a_t(m_xr, t, interpol):
                            m_xr = m_xr.unstack()
                            t_rel = relativizar_eje(m_xr, t)
                            # para hacer: arreglar de forma corecta
                            if m_xr['fecha'].values[0] == 0:
                    Severity: Minor
                    Found in tinamit0/mod/extern.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 construir_l has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                    def construir_línea_l(nombres_parámetros, dic_parámetros):
                        if nombres_parámetros[0] == '#':
                            try:
                                línea = dic_parámetros['#'].pop(0)
                            except KeyError:
                    Severity: Minor
                    Found in src/tinamit/envolt/mbf/sahysmod/_arch_ingr/_anlzd_sntct.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 conv_fun has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                    Open

                    def conv_fun(fun, dialecto_orig, dialecto_final):
                        """
                        Traduce una función a otro dialecto.
                    
                        Parameters
                    Severity: Minor
                    Found in tinamit0/calibs/sintx/_funcs.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

                    Severity
                    Category
                    Status
                    Source
                    Language