Skip to content

Commit

Permalink
Cleaning up pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
carlio committed Feb 16, 2022
1 parent 4a9b59c commit 86df708
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pylint_django/augmentations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ def is_model_test_case_subclass(node):
return node_is_subclass(node, "django.test.testcases.TestCase")


class IsAttribute:
class IsAttribute: # pylint: disable=too-few-public-methods
def __init__(self, parents, attrs):
self.parents = parents
self.attrs = attrs
Expand Down Expand Up @@ -756,7 +756,7 @@ def allow_meta_protected_access(node):
return False


class IsClass:
class IsClass: # pylint: disable=too-few-public-methods
def __init__(self, class_name):
self.class_name = class_name

Expand Down

0 comments on commit 86df708

Please sign in to comment.