File tree 3 files changed +11
-3
lines changed
pylint_django/augmentations
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
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
+
4
12
Version 2.5.0 (02 Jan 2022)
5
13
---------------------------
6
14
Original file line number Diff line number Diff line change @@ -645,7 +645,7 @@ def is_model_test_case_subclass(node):
645
645
return node_is_subclass (node , "django.test.testcases.TestCase" )
646
646
647
647
648
- class IsAttribute :
648
+ class IsAttribute : # pylint: disable=too-few-public-methods
649
649
def __init__ (self , parents , attrs ):
650
650
self .parents = parents
651
651
self .attrs = attrs
@@ -756,7 +756,7 @@ def allow_meta_protected_access(node):
756
756
return False
757
757
758
758
759
- class IsClass :
759
+ class IsClass : # pylint: disable=too-few-public-methods
760
760
def __init__ (self , class_name ):
761
761
self .class_name = class_name
762
762
Original file line number Diff line number Diff line change 14
14
15
15
description = "A Pylint plugin to help Pylint understand the Django web framework" ,
16
16
long_description = LONG_DESCRIPTION ,
17
- version = "2.5.0 " ,
17
+ version = "2.5.1 " ,
18
18
packages = find_packages (),
19
19
include_package_data = True ,
20
20
install_requires = [
You can’t perform that action at this time.
0 commit comments