Skip to content

Commit

Permalink
Corrects typo in PlotAccessor class name
Browse files Browse the repository at this point in the history
  • Loading branch information
Sofía Sappia committed Dec 8, 2020
1 parent e108270 commit d5d8a7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apode/basic.py
Expand Up @@ -23,7 +23,7 @@

from .concentration import ConcentrationMeasures
from .inequality import InequalityMeasures
from .plots import PlotAccsessor
from .plots import PlotAccessor
from .polarization import PolarizationMeasures
from .poverty import PovertyMeasures
from .welfare import WelfareMeasures
Expand Down Expand Up @@ -79,7 +79,7 @@ class ApodeData:
init=False, default=attr.Factory(WelfareMeasures, takes_self=True)
)
plot = attr.ib(
init=False, default=attr.Factory(PlotAccsessor, takes_self=True)
init=False, default=attr.Factory(PlotAccessor, takes_self=True)
)

@income_column.validator
Expand Down
2 changes: 1 addition & 1 deletion apode/plots.py
Expand Up @@ -38,7 +38,7 @@


@attr.s(frozen=True)
class PlotAccsessor:
class PlotAccessor:
"""Plots for Apode.
The following plots are implemented:
Expand Down

0 comments on commit d5d8a7c

Please sign in to comment.