diff --git a/wemake_python_styleguide/violations/complexity.py b/wemake_python_styleguide/violations/complexity.py index e3bc74854..b632d72ba 100644 --- a/wemake_python_styleguide/violations/complexity.py +++ b/wemake_python_styleguide/violations/complexity.py @@ -967,7 +967,7 @@ class TooManyPublicAttributesViolation(ASTViolation): Solution: Make some attributes protected. Split this class into several ones. - If class is a Data Transder Object, then use ``@dataclass`` decorator. + If class is a Data Transfer Object, then use ``@dataclass`` decorator. Configuration: This rule is configurable with ``--max-attributes``.