[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 16/25] python/pylint: disable too-many-function-args
|
From: |
John Snow |
|
Subject: |
[PATCH v3 16/25] python/pylint: disable too-many-function-args |
|
Date: |
Tue, 3 Aug 2021 14:29:32 -0400 |
too-many-function-args seems prone to failure when considering
things like Method Resolution Order, which mypy gets correct. When
dealing with multiple inheritance, pylint doesn't seem to understand
which method will actually get called, while mypy does.
Remove the less powerful, redundant check.
Signed-off-by: John Snow <jsnow@redhat.com>
---
python/setup.cfg | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/setup.cfg b/python/setup.cfg
index f87e32177ab..19d5e154630 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -88,7 +88,7 @@ ignore_missing_imports = True
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use "--disable=all --enable=classes
# --disable=W".
-disable=
+disable=too-many-function-args, # mypy handles this with less false positives.
[pylint.basic]
# Good variable names which should always be accepted, separated by a comma.
--
2.31.1
- [PATCH v3 10/25] python/aqmp: add configurable read buffer limit, (continued)
- [PATCH v3 10/25] python/aqmp: add configurable read buffer limit, John Snow, 2021/08/03
- [PATCH v3 14/25] python/aqmp: add well-known QMP object models, John Snow, 2021/08/03
- [PATCH v3 12/25] python/aqmp: add AsyncProtocol._readline() method, John Snow, 2021/08/03
- [PATCH v3 13/25] python/aqmp: add QMP Message format, John Snow, 2021/08/03
- [PATCH v3 15/25] python/aqmp: add QMP event support, John Snow, 2021/08/03
- [PATCH v3 17/25] python/aqmp: add QMP protocol support, John Snow, 2021/08/03
- [PATCH v3 16/25] python/pylint: disable too-many-function-args,
John Snow <=
- [PATCH v3 18/25] python/pylint: disable no-member check, John Snow, 2021/08/03
- [PATCH v3 19/25] python/aqmp: Add message routing to QMP protocol, John Snow, 2021/08/03
- [PATCH v3 20/25] python/aqmp: add execute() interfaces, John Snow, 2021/08/03
- [PATCH v3 22/25] python/aqmp: add asyncio_run compatibility wrapper, John Snow, 2021/08/03
- [PATCH v3 21/25] python/aqmp: add _raw() execution interface, John Snow, 2021/08/03
- [PATCH v3 24/25] python: bump avocado to v90.0, John Snow, 2021/08/03
- [PATCH v3 23/25] python/aqmp: add scary message, John Snow, 2021/08/03
- [PATCH v3 25/25] python/aqmp: add AsyncProtocol unit tests, John Snow, 2021/08/03
- Re: [PATCH v3 00/25] python: introduce Asynchronous QMP package, John Snow, 2021/08/16