[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 02/27] python: update pylint configuration
|
From: |
John Snow |
|
Subject: |
[PATCH 02/27] python: update pylint configuration |
|
Date: |
Wed, 10 May 2023 23:54:10 -0400 |
Pylint 2.17.x decided that SocketAddrT was a bad name for a Type Alias for some
reason. Sure, fine, whatever.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
---
python/setup.cfg | 1 +
1 file changed, 1 insertion(+)
diff --git a/python/setup.cfg b/python/setup.cfg
index 9e923d9762..3f36502954 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -132,6 +132,7 @@ good-names=i,
fd, # fd = os.open(...)
c, # for c in string: ...
T, # for TypeVars. See pylint#3401
+ SocketAddrT, # Not sure why this is invalid.
[pylint.similarities]
# Ignore imports when computing similarities.
--
2.40.0
- [PATCH 00/27] configure: create a python venv and ensure meson, sphinx, John Snow, 2023/05/10
- [PATCH 04/27] mkvenv: add better error message for missing pyexpat module, John Snow, 2023/05/10
- [PATCH 01/27] python: shut up "pip install" during "make check-minreqs", John Snow, 2023/05/10
- [PATCH 03/27] python: add mkvenv.py, John Snow, 2023/05/10
- [PATCH 02/27] python: update pylint configuration,
John Snow <=
- [PATCH 05/27] mkvenv: add nested venv workaround, John Snow, 2023/05/10
- [PATCH 06/27] mkvenv: add ensure subcommand, John Snow, 2023/05/10
- [PATCH 08/27] mkvenv: add console script entry point generation, John Snow, 2023/05/10
- [PATCH 07/27] mkvenv: add diagnose() method for ensure() failures, John Snow, 2023/05/10
[PATCH 13/27] tests/vm: add py310-expat to NetBSD, John Snow, 2023/05/10
[PATCH 12/27] tests/vm: Configure netbsd to use Python 3.10, John Snow, 2023/05/10