julienmalard/Tinamit

View on GitHub

Showing 188 of 188 total issues

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

    def __init__(
Severity: Major
Found in src/tinamit/conex.py - About 50 mins to fix

    Function _efec_calib has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def _efec_calib(símismo, líms_paráms, método, n_iter, obs):
    Severity: Major
    Found in tinamit0/calibs/mod.py - About 50 mins to fix

      Function _efec_calib has 7 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def _efec_calib(símismo, líms_paráms, método, n_iter, obs):
      Severity: Major
      Found in tinamit0/calibs/mod.py - About 50 mins to fix

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

            def __init__(símismo, archivo, nombre=None, lugares=None, fechas=None, cód_vacío=None):
        Severity: Major
        Found in tinamit0/datos/fuente.py - About 50 mins to fix

          Function _optimizar has 7 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          def _optimizar(func, líms_paráms, obs_x, obs_y, inic=None, **ops):
          Severity: Major
          Found in tinamit0/calibs/ec/_opt.py - About 50 mins to fix

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

                def __init__(símismo, archivo, col_id, escala_colores=None, llenar=True, alpha=1, **argsll):
            Severity: Major
            Found in tinamit0/geog/mapa.py - About 50 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                          if últ_niv:
                                              mu_v = final
              
              
              Severity: Major
              Found in tinamit0/calibs/sintx/ec.py - About 45 mins to fix

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

                    def conectar_vars(símismo, var_fuente, var_recip, modelo_fuente=None, modelo_recip=None, conv=None):
                Severity: Minor
                Found in tinamit0/conect/_mod.py - About 45 mins to fix

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

                      def __init__(símismo, lat, long, elev=None, fuentes=None, escenario='8.5'):
                  Severity: Minor
                  Found in tinamit0/mod/clima.py - About 45 mins to fix

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

                        def __init__(símismo, d_vars_pm, obs_x, í_datos, dialecto='tinamït'):
                    Severity: Minor
                    Found in tinamit0/calibs/sintx/_vstr_transf.py - About 45 mins to fix

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

                          def __init__(símismo, ec, nombre=None, otras_ecs=None, nombres_equiv=None, dialecto='tinamït'):
                      Severity: Minor
                      Found in tinamit0/calibs/sintx/ec.py - About 45 mins to fix

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

                        def detectar_codif(archivo, máx_líneas=None, cortar=None, cert=0.95, auto='utf-8'):
                        Severity: Minor
                        Found in tinamit0/cositas.py - About 45 mins to fix

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

                              def __init__(símismo, nombre, nivel, cód=None, sub_lugares=None):
                          Severity: Minor
                          Found in tinamit0/geog/región.py - About 45 mins to fix

                            Avoid deeply nested control flow statements.
                            Open

                                                if tupla_plantilla[0][0:4] != 'FOR[':
                                                    await archContenido.write(
                                                        construir_línea(tupla_plantilla[1], tupla_plantilla[0], dic_paráms, dic_config, paráms_ent)
                                                    )
                                                else:
                            Severity: Major
                            Found in src/tinamit/envolt/mbf/sahysmod/_arch_ingr/_anlzd_sntct.py - About 45 mins to fix

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

                              def _calibrar_mod_bayes(mod_bayes, paráms, obs=None, vars_compartidos=None, ops=None):
                              Severity: Minor
                              Found in tinamit0/calibs/ec/_bayes.py - About 45 mins to fix

                                Avoid deeply nested control flow statements.
                                Open

                                                    while not _fin_sección(f):
                                                        vrs = _extraer_vars(f)
                                                        for var, val in vrs:
                                                            if var not in dic_datos:
                                                                dic_datos[var] = np.full((n_años, n_est, n_polí), np.nan)
                                Severity: Major
                                Found in src/tinamit/envolt/mbf/sahysmod/_arch_egr.py - About 45 mins to fix

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

                                      def __init__(símismo, ec, nombre=None, otras_ecs=None, nombres_equiv=None, dialecto='tinamït'):
                                          """
                                          Inicializa un objeto de ecuación.
                                  
                                          Parameters
                                  Severity: Minor
                                  Found in tinamit0/calibs/sintx/ec.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 líms[0] is None:
                                                                  final = pm.Deterministic(nmbr_mu, líms[1] - pm.math.exp(mu_v))
                                                              elif líms[1] is None:
                                                                  final = pm.Deterministic(nmbr_mu, líms[0] + pm.math.exp(mu_v))
                                                              else:
                                  Severity: Major
                                  Found in tinamit0/calibs/sintx/ec.py - About 45 mins to fix

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

                                        def __init__(símismo, ec, paráms, nombre=None, dialecto='tinamït'):
                                    Severity: Minor
                                    Found in tinamit0/calibs/ec/_opt.py - About 45 mins to fix

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

                                          def interpolar(símismo, vars_interés, lugares=None, fechas=None, extrap=False):
                                      Severity: Minor
                                      Found in tinamit0/datos/bd.py - About 45 mins to fix
                                        Severity
                                        Category
                                        Status
                                        Source
                                        Language