File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
pylint_django/augmentations Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ Version 2.5.1 (16 Feb 2022)
5+ ---------------------------
6+
7+ Bugfixes
8+ ~~~~~~~~
9+
10+ - Fixed picking for `augment_visit ` (`#276 <https://github.com/PyCQA/pylint-django/issues/276 >`_)
11+
412Version 2.5.0 (02 Jan 2022)
513---------------------------
614
Original file line number Diff line number Diff line change @@ -645,7 +645,7 @@ def is_model_test_case_subclass(node):
645645 return node_is_subclass (node , "django.test.testcases.TestCase" )
646646
647647
648- class IsAttribute :
648+ class IsAttribute : # pylint: disable=too-few-public-methods
649649 def __init__ (self , parents , attrs ):
650650 self .parents = parents
651651 self .attrs = attrs
@@ -756,7 +756,7 @@ def allow_meta_protected_access(node):
756756 return False
757757
758758
759- class IsClass :
759+ class IsClass : # pylint: disable=too-few-public-methods
760760 def __init__ (self , class_name ):
761761 self .class_name = class_name
762762
Original file line number Diff line number Diff line change 14141515 description = "A Pylint plugin to help Pylint understand the Django web framework" ,
1616 long_description = LONG_DESCRIPTION ,
17- version = "2.5.0 " ,
17+ version = "2.5.1 " ,
1818 packages = find_packages (),
1919 include_package_data = True ,
2020 install_requires = [
You can’t perform that action at this time.
0 commit comments