From: John Snow Date: Thu, 11 May 2023 03:54:10 +0000 (-0400) Subject: python: update pylint configuration X-Git-Tag: v8.1.0-rc0~118^2~49 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6c2537d35bf121d8924b66a795a58dd761d459b4;p=thirdparty%2Fqemu.git python: update pylint configuration 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 Reviewed-by: Daniel P. Berrangé Message-Id: <20230511035435.734312-3-jsnow@redhat.com> Signed-off-by: Paolo Bonzini --- diff --git a/python/setup.cfg b/python/setup.cfg index 9e923d97628..3f36502954e 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.