forked from pylint-dev/pylint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix false negative for
property-with-parameters
in the case of pa…
…rameters which are ``positional-only``, ``keyword-only``, ``variadic positional`` or ``variadic keyword``. Closes pylint-dev#9584
- Loading branch information
Showing
4 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Fix false negative for ``property-with-parameters`` in the case of parameters which are ``positional-only``, ``keyword-only``, ``variadic positional`` or ``variadic keyword``. | ||
|
||
Closes #9584 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
property-with-parameters:7:4:7:17:Cls.attribute:Cannot have defined parameters for properties:UNDEFINED | ||
property-with-parameters:7:4:7:9:Cls.a:Cannot have defined parameters for properties:UNDEFINED | ||
property-with-parameters:11:4:11:9:Cls.b:Cannot have defined parameters for properties:UNDEFINED | ||
property-with-parameters:15:4:15:9:Cls.c:Cannot have defined parameters for properties:UNDEFINED | ||
property-with-parameters:19:4:19:9:Cls.d:Cannot have defined parameters for properties:UNDEFINED | ||
property-with-parameters:23:4:23:9:Cls.e:Cannot have defined parameters for properties:UNDEFINED |