From d80ae218aabf8177672fd259df8e439f612ec289 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 21 Jul 2018 19:19:35 +0200 Subject: Add exceptions for some pylint errors until we find out where type inference has gone very wrong. --- poezio/core/handlers.py | 3 +++ poezio/windows/text_win.py | 1 + 2 files changed, 4 insertions(+) diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py index 7868cb59..ca5a3ca8 100644 --- a/poezio/core/handlers.py +++ b/poezio/core/handlers.py @@ -165,6 +165,8 @@ class HandlerCore: xml=message.xml.find( '{http://jabber.org/protocol/muc#user}x/{http://jabber.org/protocol/muc#user}invite' )) + # TODO: find out why pylint thinks "inviter" is a list + #pylint: disable=no-member inviter = invite['from'] reason = invite['reason'] password = invite['password'] @@ -1520,6 +1522,7 @@ class HandlerCore: der = ssl.PEM_cert_to_DER_cert(pem) asn1 = pyasn1.codec.der.decoder.decode( der, asn1Spec=pyasn1_modules.rfc2459.Certificate())[0] + #pylint: disable=no-member spki = asn1.getComponentByName("tbsCertificate").getComponentByName( "subjectPublicKeyInfo") spki_digest = sha256( diff --git a/poezio/windows/text_win.py b/poezio/windows/text_win.py index 23fefb56..8e6703ba 100644 --- a/poezio/windows/text_win.py +++ b/poezio/windows/text_win.py @@ -86,6 +86,7 @@ class BaseTextWin(Win): Return the number of lines that are built for the given message. """ + #pylint: disable=assignment-from-no-return lines = self.build_message( message, timestamp=timestamp, nick_size=nick_size) if self.lock: -- cgit v1.2.3