julienmalard/Tinamit

View on GitHub
tinamit0/datos/bd.py

Summary

Maintainability
A
3 hrs
Test Coverage

Function _gen_fuente has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

def _gen_fuente(fnt, nombre=None, lugares=None, fechas=None):
    if isinstance(fnt, pd.DataFrame):
        return FuentePandas(fnt, nombre or 'pandas', lugares=lugares, fechas=fechas)

    elif isinstance(fnt, dict):
Severity: Minor
Found in tinamit0/datos/bd.py - About 55 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 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

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

    def _interpolar_xr(m, fechas=None):
        if fechas is not None:
            raise ValueError
        interpolado = m.unstack().interpolate(limit_area='inside').stack()
        if len(interpolado.dropna()):
    Severity: Minor
    Found in tinamit0/datos/bd.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 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 fnt
      Severity: Major
      Found in tinamit0/datos/bd.py - About 30 mins to fix

        There are no issues that match your filters.

        Category
        Status