Skip to content

Commit

Permalink
Fix: Try to avoid lint failures in test_public_attrs_count. Issue #14
Browse files Browse the repository at this point in the history
  • Loading branch information
iZafiro committed Feb 24, 2020
1 parent 363d794 commit 3456fdf
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@ def test_wrong_attributes_count(
assert_errors(
visitor,
[TooManyPublicAttributesViolation],
ignored_types = (TooManyExpressionsViolation,
TooManyReturnsViolation,
TooManyLocalsViolation,
TooManyArgumentsViolation,
TooManyAwaitsViolation,
TooManyRaisesViolation,),
ignored_types=(TooManyExpressionsViolation,
TooManyReturnsViolation,
TooManyLocalsViolation,
TooManyArgumentsViolation,
TooManyAwaitsViolation,
TooManyRaisesViolation,),
)
assert_error_text(visitor, '2', option_values.max_attributes)

Expand Down

0 comments on commit 3456fdf

Please sign in to comment.