forked from elastic/rally
-
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.
With this commit we re-enabled the pylint check `R0904` which checks for too many public methods. We have eliminated the warnings by using different strategies: * We have merged too fine-grained methods into more coarse-grained ones. * We have eliminated some methods that have been called once or never. * We have properly marked protected methods. * Where appropriate we have disabled the warning (in tests). Relates elastic#838
- Loading branch information
1 parent
2fe4ded
commit 4c6e22c
Showing
10 changed files
with
284 additions
and
388 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 |
---|---|---|
|
@@ -170,7 +170,6 @@ disable=print-statement, | |
C0330, | ||
C0415, | ||
C4001, | ||
R0904, | ||
R0916, | ||
W0201, | ||
W0613, | ||
|
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
Oops, something went wrong.